public enum ModifierSpec extends java.lang.Enum<ModifierSpec>
| Enum Constant and Description |
|---|
ABSTRACT |
FINAL |
NATIVE |
NONE |
PRIVATE |
PROTECTED |
PUBLIC |
STATIC |
SYNCHRONIZED |
TRANSIENT |
VOLATILE |
| Modifier and Type | Method and Description |
|---|---|
static ModifierSpec |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModifierSpec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifierSpec NONE
public static final ModifierSpec PUBLIC
public static final ModifierSpec PROTECTED
public static final ModifierSpec PRIVATE
public static final ModifierSpec FINAL
public static final ModifierSpec STATIC
public static final ModifierSpec ABSTRACT
public static final ModifierSpec NATIVE
public static final ModifierSpec SYNCHRONIZED
public static final ModifierSpec TRANSIENT
public static final ModifierSpec VOLATILE
public static ModifierSpec[] values()
for (ModifierSpec c : ModifierSpec.values()) System.out.println(c);
public static ModifierSpec 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