Method Summary |
|
public static int | clear(int mod, int clearBit) Clears a specified bit in mod . |
public static boolean | isAbstract(int mod) Returns true if the modifiers include the abstract
modifier. |
public static boolean | isAnnotation(int mod) Returns true if the modifiers include the annotation
modifier. |
public static boolean | isEnum(int mod) Returns true if the modifiers include the enum
modifier. |
public static boolean | isFinal(int mod) Returns true if the modifiers include the final
modifier. |
public static boolean | isInterface(int mod) Returns true if the modifiers include the interface
modifier. |
public static boolean | isNative(int mod) Returns true if the modifiers include the native
modifier. |
public static boolean | isPackage(int mod) Returns true if the modifiers do not include either
public, protected, or private. |
public static boolean | isPrivate(int mod) Returns true if the modifiers include the private
modifier. |
public static boolean | isProtected(int mod) Returns true if the modifiers include the protected
modifier. |
public static boolean | isPublic(int mod) Returns true if the modifiers include the public
modifier. |
public static boolean | isStatic(int mod) Returns true if the modifiers include the static
modifier. |
public static boolean | isStrict(int mod) Returns true if the modifiers include the strictfp
modifier. |
public static boolean | isSynchronized(int mod) Returns true if the modifiers include the synchronized
modifier. |
public static boolean | isTransient(int mod) Returns true if the modifiers include the transient
modifier. |
public static boolean | isVolatile(int mod) Returns true if the modifiers include the volatile
modifier. |
public static int | setPackage(int mod) Clears the public, protected, and private bits. |
public static int | setPrivate(int mod) Truns the private bit on. |
public static int | setProtected(int mod) Truns the protected bit on. |
public static int | setPublic(int mod) Truns the public bit on. |
public static String | toString(int mod) Return a string describing the access modifier flags in
the specified modifier. |