gnu.bytecode
Class Access
java.lang.Object
gnu.bytecode.Access
public class Access
- extends java.lang.Object
Access flags.
Method Summary |
static java.lang.String |
toString(int flags)
|
static java.lang.String |
toString(int flags,
char kind)
Return a string naming the access bits in flags. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PUBLIC
public static final short PUBLIC
- See Also:
- Constant Field Values
PRIVATE
public static final short PRIVATE
- See Also:
- Constant Field Values
PROTECTED
public static final short PROTECTED
- See Also:
- Constant Field Values
STATIC
public static final short STATIC
- See Also:
- Constant Field Values
FINAL
public static final short FINAL
- See Also:
- Constant Field Values
SUPER
public static final short SUPER
- See Also:
- Constant Field Values
SYNCHRONIZED
public static final short SYNCHRONIZED
- See Also:
- Constant Field Values
VOLATILE
public static final short VOLATILE
- See Also:
- Constant Field Values
BRIDGE
public static final short BRIDGE
- See Also:
- Constant Field Values
TRANSIENT
public static final short TRANSIENT
- See Also:
- Constant Field Values
VARARGS
public static final short VARARGS
- See Also:
- Constant Field Values
NATIVE
public static final short NATIVE
- See Also:
- Constant Field Values
INTERFACE
public static final short INTERFACE
- See Also:
- Constant Field Values
ABSTRACT
public static final short ABSTRACT
- See Also:
- Constant Field Values
STRICT
public static final short STRICT
- See Also:
- Constant Field Values
SYNTHETIC
public static final short SYNTHETIC
- See Also:
- Constant Field Values
ANNOTATION
public static final short ANNOTATION
- See Also:
- Constant Field Values
ENUM
public static final short ENUM
- See Also:
- Constant Field Values
CLASS_MODIFIERS
public static final short CLASS_MODIFIERS
- See Also:
- Constant Field Values
FIELD_MODIFIERS
public static final short FIELD_MODIFIERS
- See Also:
- Constant Field Values
METHOD_MODIFIERS
public static final short METHOD_MODIFIERS
- See Also:
- Constant Field Values
Access
public Access()
toString
public static java.lang.String toString(int flags)
toString
public static java.lang.String toString(int flags,
char kind)
- Return a string naming the access bits in flags.
- Parameters:
kind
- 'C' for a class, 'M' for a method, 'F' for a field.