private static enum ClassModel.SignatureParseState extends java.lang.Enum<ClassModel.SignatureParseState>
Enum Constant and Description |
---|
counting |
done |
inArray |
inclass |
skipping |
Modifier and Type | Method and Description |
---|---|
static ClassModel.SignatureParseState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassModel.SignatureParseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassModel.SignatureParseState skipping
public static final ClassModel.SignatureParseState counting
public static final ClassModel.SignatureParseState inclass
public static final ClassModel.SignatureParseState inArray
public static final ClassModel.SignatureParseState done
public static ClassModel.SignatureParseState[] values()
for (ClassModel.SignatureParseState c : ClassModel.SignatureParseState.values()) System.out.println(c);
public static ClassModel.SignatureParseState 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