Package org.benf.cfr.reader.entities
Enum AccessFlagMethod
- java.lang.Object
-
- java.lang.Enum<AccessFlagMethod>
-
- org.benf.cfr.reader.entities.AccessFlagMethod
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AccessFlagMethod>
public enum AccessFlagMethod extends java.lang.Enum<AccessFlagMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACC_ABSTRACT
ACC_BRIDGE
ACC_FAKE_END_RESOURCE
ACC_FINAL
ACC_NATIVE
ACC_PRIVATE
ACC_PROTECTED
ACC_PUBLIC
ACC_STATIC
ACC_STRICT
ACC_SYNCHRONISED
ACC_SYNTHETIC
ACC_VARARGS
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
name
-
Constructor Summary
Constructors Modifier Constructor Description private
AccessFlagMethod(java.lang.String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
applyAttributes(AttributeMap attributeMap, java.util.Set<AccessFlagMethod> accessFlagSet)
static java.util.EnumSet<AccessFlagMethod>
build(int raw)
java.lang.String
toString()
static AccessFlagMethod
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AccessFlagMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACC_PUBLIC
public static final AccessFlagMethod ACC_PUBLIC
-
ACC_PRIVATE
public static final AccessFlagMethod ACC_PRIVATE
-
ACC_PROTECTED
public static final AccessFlagMethod ACC_PROTECTED
-
ACC_STATIC
public static final AccessFlagMethod ACC_STATIC
-
ACC_FINAL
public static final AccessFlagMethod ACC_FINAL
-
ACC_SYNCHRONISED
public static final AccessFlagMethod ACC_SYNCHRONISED
-
ACC_BRIDGE
public static final AccessFlagMethod ACC_BRIDGE
-
ACC_VARARGS
public static final AccessFlagMethod ACC_VARARGS
-
ACC_NATIVE
public static final AccessFlagMethod ACC_NATIVE
-
ACC_ABSTRACT
public static final AccessFlagMethod ACC_ABSTRACT
-
ACC_STRICT
public static final AccessFlagMethod ACC_STRICT
-
ACC_SYNTHETIC
public static final AccessFlagMethod ACC_SYNTHETIC
-
ACC_FAKE_END_RESOURCE
public static final AccessFlagMethod ACC_FAKE_END_RESOURCE
-
-
Method Detail
-
values
public static AccessFlagMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AccessFlagMethod c : AccessFlagMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessFlagMethod valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
build
public static java.util.EnumSet<AccessFlagMethod> build(int raw)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<AccessFlagMethod>
-
applyAttributes
public static void applyAttributes(AttributeMap attributeMap, java.util.Set<AccessFlagMethod> accessFlagSet)
-
-