All Packages  Class Hierarchy  This Package  Previous  Next  Index
Class java.lang.reflect.Modifier 
java.lang.Object
|
   +----java.lang.reflect.Modifier
- public class Modifier - extends Object 
The Modifier class provides static methods and constants to decode class and member access modifiers.- See Also: 
- getModifiers, getModifiers 
 
 
 ABSTRACT ABSTRACT
 FINAL FINAL
 INTERFACE INTERFACE
 NATIVE NATIVE
 PRIVATE PRIVATE
 PROTECTED PROTECTED
 PUBLIC PUBLIC
 STATIC STATIC
 SYNCHRONIZED SYNCHRONIZED
 TRANSIENT TRANSIENT
 VOLATILE VOLATILE
 
 
 Modifier() Modifier()
 
 
 isAbstract(int) isAbstract(int)
- Return true if the specifier integer includes the abstract modifier. 
 isFinal(int) isFinal(int)
- Return true if the specifier integer includes the final modifier. 
 isInterface(int) isInterface(int)
- Return true if the specifier integer includes the interface modifier. 
 isNative(int) isNative(int)
- Return true if the specifier integer includes the native modifier. 
 isPrivate(int) isPrivate(int)
- Return true if the specifier integer includes the private modifier. 
 isProtected(int) isProtected(int)
- Return true if the specifier integer includes the protected modifier. 
 isPublic(int) isPublic(int)
- Return true if the specified integer includes the public modifier. 
 isStatic(int) isStatic(int)
- Return true if the specifier integer includes the static modifier. 
 isSynchronized(int) isSynchronized(int)
- Return true if the specifier integer includes the synchronized modifier. 
 isTransient(int) isTransient(int)
- Return true if the specifier integer includes the transient modifier. 
 isVolatile(int) isVolatile(int)
- Return true if the specifier integer includes the volatile modifier. 
 toString(int) toString(int)
- Return a string describing the access modifier flags in the specified modifier. 
 
 
 PUBLIC
 PUBLIC 
public static final int PUBLIC
 PRIVATE
 PRIVATE 
public static final int PRIVATE
 PROTECTED
 PROTECTED 
public static final int PROTECTED
 STATIC
 STATIC 
public static final int STATIC
 FINAL
 FINAL 
public static final int FINAL
 SYNCHRONIZED
 SYNCHRONIZED 
public static final int SYNCHRONIZED
 VOLATILE
 VOLATILE 
public static final int VOLATILE
 TRANSIENT
 TRANSIENT 
public static final int TRANSIENT
 NATIVE
 NATIVE 
public static final int NATIVE
 INTERFACE
 INTERFACE 
public static final int INTERFACE
 ABSTRACT
 ABSTRACT 
public static final int ABSTRACT
 
 
 Modifier
 Modifier 
public Modifier()
 
 
 isPublic
 isPublic 
public static boolean isPublic(int mod)
- Return true if the specified integer includes the public modifier. 
 isPrivate
 isPrivate 
public static boolean isPrivate(int mod)
- Return true if the specifier integer includes the private modifier. 
 isProtected
 isProtected 
public static boolean isProtected(int mod)
- Return true if the specifier integer includes the protected modifier. 
 isStatic
 isStatic 
public static boolean isStatic(int mod)
- Return true if the specifier integer includes the static modifier. 
 isFinal
 isFinal 
public static boolean isFinal(int mod)
- Return true if the specifier integer includes the final modifier. 
 isSynchronized
 isSynchronized 
public static boolean isSynchronized(int mod)
- Return true if the specifier integer includes the synchronized modifier. 
 isVolatile
 isVolatile 
public static boolean isVolatile(int mod)
- Return true if the specifier integer includes the volatile modifier. 
 isTransient
 isTransient 
public static boolean isTransient(int mod)
- Return true if the specifier integer includes the transient modifier. 
 isNative
 isNative 
public static boolean isNative(int mod)
- Return true if the specifier integer includes the native modifier. 
 isInterface
 isInterface 
public static boolean isInterface(int mod)
- Return true if the specifier integer includes the interface modifier. 
 isAbstract
 isAbstract 
public static boolean isAbstract(int mod)
- Return true if the specifier integer includes the abstract modifier. 
 toString
 toString 
public static String toString(int mod)
- Return a string describing the access modifier flags in the specified modifier. For example: 
public final synchronized
    private transient volatile
The modifier names are return in canonical order, as specified by The Java Language Specification.
All Packages  Class Hierarchy  This Package  Previous  Next  Index
Submit a bug or feature - Version 1.1.8 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1995-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.