public enum AccessFlagMethod extends Enum<AccessFlagMethod>
Enum Constant and 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 |
Modifier and Type | Method and Description |
---|---|
static void |
applyAttributes(AttributeMap attributeMap,
Set<AccessFlagMethod> accessFlagSet) |
static EnumSet<AccessFlagMethod> |
build(int raw) |
String |
toString() |
static AccessFlagMethod |
valueOf(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.
|
public static final AccessFlagMethod ACC_PUBLIC
public static final AccessFlagMethod ACC_PRIVATE
public static final AccessFlagMethod ACC_PROTECTED
public static final AccessFlagMethod ACC_STATIC
public static final AccessFlagMethod ACC_FINAL
public static final AccessFlagMethod ACC_SYNCHRONISED
public static final AccessFlagMethod ACC_BRIDGE
public static final AccessFlagMethod ACC_VARARGS
public static final AccessFlagMethod ACC_NATIVE
public static final AccessFlagMethod ACC_ABSTRACT
public static final AccessFlagMethod ACC_STRICT
public static final AccessFlagMethod ACC_SYNTHETIC
public static final AccessFlagMethod ACC_FAKE_END_RESOURCE
public static AccessFlagMethod[] values()
for (AccessFlagMethod c : AccessFlagMethod.values()) System.out.println(c);
public static AccessFlagMethod valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static EnumSet<AccessFlagMethod> build(int raw)
public String toString()
toString
in class Enum<AccessFlagMethod>
public static void applyAttributes(AttributeMap attributeMap, Set<AccessFlagMethod> accessFlagSet)
Copyright © 2011-2021. All Rights Reserved.