public static enum ModifierSpecification.AccessFlag extends java.lang.Enum<ModifierSpecification.AccessFlag>
| Modifier and Type | Method and Description |
|---|---|
static ModifierSpecification.AccessFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModifierSpecification.AccessFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifierSpecification.AccessFlag PUBLIC
public static final ModifierSpecification.AccessFlag PRIVATE
public static final ModifierSpecification.AccessFlag PROTECTED
public static ModifierSpecification.AccessFlag[] values()
for (ModifierSpecification.AccessFlag c : ModifierSpecification.AccessFlag.values()) System.out.println(c);
public static ModifierSpecification.AccessFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null