public static enum TypeUtils.ModifierType extends java.lang.Enum<TypeUtils.ModifierType>
| Enum Constant and Description |
|---|
CLASS
The modifier bits apply to a class.
|
FIELD
The modifier bits apply to a field.
|
METHOD
The modifier bits apply to a method.
|
| Modifier and Type | Method and Description |
|---|---|
static TypeUtils.ModifierType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeUtils.ModifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeUtils.ModifierType CLASS
public static final TypeUtils.ModifierType METHOD
public static final TypeUtils.ModifierType FIELD
public static TypeUtils.ModifierType[] values()
for (TypeUtils.ModifierType c : TypeUtils.ModifierType.values()) System.out.println(c);
public static TypeUtils.ModifierType 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