| java.lang.Object java.lang.reflect.Modifier
Method Summary | |
public static boolean | isAbstract(int modifiers) Return true if the specified modifiers contain the abstract
modifier, false otherwise. | public static boolean | isFinal(int modifiers) Return true if the specified modifiers contain the final
modifier, false otherwise. | public static boolean | isInterface(int modifiers) Return true if the specified modifiers contain the interface
modifier, false otherwise. | public static boolean | isNative(int modifiers) Return true if the specified modifiers contain the native
modifier, false otherwise. | public static boolean | isPrivate(int modifiers) Return true if the specified modifiers contain the private
modifier, false otherwise. | public static boolean | isProtected(int modifiers) Return true if the specified modifiers contain the protected
modifier, false otherwise. | public static boolean | isPublic(int modifiers) Return true if the specified modifiers contain the public
modifier, false otherwise. | public static boolean | isStatic(int modifiers) Return true if the specified modifiers contain the static
modifier, false otherwise. | public static boolean | isStrict(int modifiers) Return true if the specified modifiers contain the strict
modifier, false otherwise. | public static boolean | isSynchronized(int modifiers) Return true if the specified modifiers contain the
synchronized modifier, false otherwise. | public static boolean | isTransient(int modifiers) Return true if the specified modifiers contain the transient
modifier, false otherwise. | public static boolean | isVolatile(int modifiers) Return true if the specified modifiers contain the volatile
modifier, false otherwise. | public static java.lang.String | toString(int modifiers) Answers a string containing the string representation of all modifiers
present in the specified modifiers. |
ABSTRACT | final public static int ABSTRACT(Code) | | |
ANNOTATION | final static int ANNOTATION(Code) | | |
BRIDGE | final static int BRIDGE(Code) | | |
ENUM | final static int ENUM(Code) | | |
FINAL | final public static int FINAL(Code) | | |
INTERFACE | final public static int INTERFACE(Code) | | |
NATIVE | final public static int NATIVE(Code) | | |
PRIVATE | final public static int PRIVATE(Code) | | |
PROTECTED | final public static int PROTECTED(Code) | | |
PUBLIC | final public static int PUBLIC(Code) | | |
STATIC | final public static int STATIC(Code) | | |
STRICT | final public static int STRICT(Code) | | |
SYNCHRONIZED | final public static int SYNCHRONIZED(Code) | | |
SYNTHETIC | final static int SYNTHETIC(Code) | | |
TRANSIENT | final public static int TRANSIENT(Code) | | |
VARARGS | final static int VARARGS(Code) | | |
VOLATILE | final public static int VOLATILE(Code) | | |
Modifier | public Modifier()(Code) | | |
isAbstract | public static boolean isAbstract(int modifiers)(Code) | | Return true if the specified modifiers contain the abstract
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the abstract modifier |
isFinal | public static boolean isFinal(int modifiers)(Code) | | Return true if the specified modifiers contain the final
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the final modifier |
isInterface | public static boolean isInterface(int modifiers)(Code) | | Return true if the specified modifiers contain the interface
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the interface modifier |
isNative | public static boolean isNative(int modifiers)(Code) | | Return true if the specified modifiers contain the native
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the native modifier |
isPrivate | public static boolean isPrivate(int modifiers)(Code) | | Return true if the specified modifiers contain the private
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the private modifier |
isProtected | public static boolean isProtected(int modifiers)(Code) | | Return true if the specified modifiers contain the protected
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the protected modifier |
isPublic | public static boolean isPublic(int modifiers)(Code) | | Return true if the specified modifiers contain the public
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the abstract modifier |
isStatic | public static boolean isStatic(int modifiers)(Code) | | Return true if the specified modifiers contain the static
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the static modifier |
isStrict | public static boolean isStrict(int modifiers)(Code) | | Return true if the specified modifiers contain the strict
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the strict modifier |
isSynchronized | public static boolean isSynchronized(int modifiers)(Code) | | Return true if the specified modifiers contain the
synchronized modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the synchronized modifier |
isTransient | public static boolean isTransient(int modifiers)(Code) | | Return true if the specified modifiers contain the transient
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the transient modifier |
isVolatile | public static boolean isVolatile(int modifiers)(Code) | | Return true if the specified modifiers contain the volatile
modifier, false otherwise.
Parameters: modifiers - the modifiers to test if the modifiers contain the volatile modifier |
toString | public static java.lang.String toString(int modifiers)(Code) | | Answers a string containing the string representation of all modifiers
present in the specified modifiers.
Modifiers appear in the order specified by the Java Language
Specification:
public private protected abstract static final transient volatile native synchronized interface strict
Parameters: modifiers - the modifiers to print a printable representation of the modifiers |
|
|