| Enum Constant and Description |
|---|
ABSTRACT |
DELEGATE |
IMPORT |
NOCONSTRUCT |
READONLY |
| Modifier and Type | Method and Description |
|---|---|
int |
getFlag() |
static Modifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Modifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Modifier ABSTRACT
public static final Modifier IMPORT
public static final Modifier DELEGATE
public static final Modifier READONLY
public static final Modifier NOCONSTRUCT
public static Modifier[] values()
for (Modifier c : Modifier.values()) System.out.println(c);
public static Modifier 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 nullpublic int getFlag()