• Field Summary

    Fields

    static final int

    The int value representing the abstract modifier.

    static final int

    The int value representing the final modifier.

    static final int

    The int value representing the interface modifier.

    static final int

    The int value representing the native modifier.

    static final int

    The int value representing the private modifier.

    static final int

    The int value representing the protected modifier.

    static final int

    The int value representing the public modifier.

    static final int

    The int value representing the static modifier.

    static final int

    The int value representing the strictfp modifier.

    static final int

    The int value representing the synchronized modifier.

    static final int

    The int value representing the transient modifier.

    static final int

    The int value representing the volatile modifier.

  • Method Summary

    static int

    Return an int value OR-ing together the source language modifiers that can be applied to a class.

    static int

    Return an int value OR-ing together the source language modifiers that can be applied to a constructor.

    static int

    Return an int value OR-ing together the source language modifiers that can be applied to a field.

    static int

    Return an int value OR-ing together the source language modifiers that can be applied to an interface.

    static boolean

    isAbstract(int mod)

    Return true if the integer argument includes the abstract modifier, false otherwise.

    static boolean

    isFinal(int mod)

    Return true if the integer argument includes the final modifier, false otherwise.

    static boolean

    isInterface(int mod)

    Return true if the integer argument includes the interface modifier, false otherwise.

    static boolean

    isNative(int mod)

    Return true if the integer argument includes the native modifier, false otherwise.

    static boolean

    isPrivate(int mod)

    Return true if the integer argument includes the private modifier, false otherwise.

    static boolean

    isProtected(int mod)

    Return true if the integer argument includes the protected modifier, false otherwise.

    static boolean

    isPublic(int mod)

    Return true if the integer argument includes the public modifier, false otherwise.

    static boolean

    isStatic(int mod)

    Return true if the integer argument includes the static modifier, false otherwise.

    static boolean

    isStrict(int mod)

    Return true if the integer argument includes the strictfp modifier, false otherwise.

    static boolean

    isSynchronized(int mod)

    Return true if the integer argument includes the synchronized modifier, false otherwise.

    static boolean

    isTransient(int mod)

    Return true if the integer argument includes the transient modifier, false otherwise.

    static boolean

    isVolatile(int mod)

    Return true if the integer argument includes the volatile modifier, false otherwise.

    static int

    Return an int value OR-ing together the source language modifiers that can be applied to a method.

    static int

    Return an int value OR-ing together the source language modifiers that can be applied to a parameter.

    toString(int mod)

    Return a string describing the access modifier flags in the specified modifier.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Creates and returns a copy of this object.

    boolean

    Indicates whether some other object is "equal to" this one.

    protected void

    Deprecated, for removal: This API element is subject to removal in a future version.

    Returns the runtime class of this Object.

    int

    Returns a hash code value for this object.

    final void

    Wakes up a single thread that is waiting on this object's monitor.

    final void

    Wakes up all threads that are waiting on this object's monitor.

    Returns a string representation of the object.

    final void

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

    final void

    wait(long timeoutMillis)

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

    final void

    wait(long timeoutMillis, int nanos)

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

  • Field Details

    • PUBLIC

    • PRIVATE

    • PROTECTED

    • STATIC

    • FINAL

    • SYNCHRONIZED

    • VOLATILE

    • TRANSIENT

    • NATIVE

    • INTERFACE

    • ABSTRACT

    • STRICT

  • Method Details

    • isPublic

    • isPrivate

    • isProtected

    • isStatic

    • isFinal

    • isSynchronized

    • isVolatile

    • isTransient

    • isNative

    • isInterface

    • isAbstract

    • isStrict

    • toString

    • classModifiers

    • interfaceModifiers

    • constructorModifiers

    • methodModifiers

    • fieldModifiers

    • parameterModifiers