Package com.aparapi.internal.model
Enum ClassModel.SignatureParseState
- java.lang.Object
-
- java.lang.Enum<ClassModel.SignatureParseState>
-
- com.aparapi.internal.model.ClassModel.SignatureParseState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ClassModel.SignatureParseState>
- Enclosing class:
- ClassModel
private static enum ClassModel.SignatureParseState extends java.lang.Enum<ClassModel.SignatureParseState>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
SignatureParseState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
skipping
public static final ClassModel.SignatureParseState skipping
-
counting
public static final ClassModel.SignatureParseState counting
-
inclass
public static final ClassModel.SignatureParseState inclass
-
inArray
public static final ClassModel.SignatureParseState inArray
-
done
public static final ClassModel.SignatureParseState done
-
-
Method Detail
-
values
public static ClassModel.SignatureParseState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ClassModel.SignatureParseState c : ClassModel.SignatureParseState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClassModel.SignatureParseState valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-