Field PRIVATE
Field type: int
Member of:
java.lang.reflect.Modifier
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return ( _modifiers & Modifier.PRIVATE ) != 0;
2
if ((m.getModifiers() & Modifier.PRIVATE) == 0 &&
3
if (0 == (nextConstructor.getModifiers() & Modifier.PRIVATE)) {
4
(c.getModifiers() & ~(Modifier.PUBLIC | Modifier.PROTECTED | Modifier.PRIVATE)) |
5
modifiers = Modifier.TRANSIENT | Modifier.PRIVATE;
6
ext_fields.add( new FieldDocImpl( "_version", Modifier.PRIVATE, new TypeImpl( "long" ) ) );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.