private static enum CheckSignatureAdapter.State extends java.lang.Enum<CheckSignatureAdapter.State>
Enum Constant and Description |
---|
BOUND |
CLASS_TYPE |
EMPTY |
END |
FORMAL |
PARAM |
RETURN |
SIMPLE_TYPE |
SUPER |
Modifier and Type | Method and Description |
---|---|
static CheckSignatureAdapter.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CheckSignatureAdapter.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckSignatureAdapter.State EMPTY
public static final CheckSignatureAdapter.State FORMAL
public static final CheckSignatureAdapter.State BOUND
public static final CheckSignatureAdapter.State SUPER
public static final CheckSignatureAdapter.State PARAM
public static final CheckSignatureAdapter.State RETURN
public static final CheckSignatureAdapter.State SIMPLE_TYPE
public static final CheckSignatureAdapter.State CLASS_TYPE
public static final CheckSignatureAdapter.State END
public static CheckSignatureAdapter.State[] values()
for (CheckSignatureAdapter.State c : CheckSignatureAdapter.State.values()) System.out.println(c);
public static CheckSignatureAdapter.State 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