Package com.mebigfatguy.fbcontrib.detect
Enum UseSplit.State
- java.lang.Object
-
- java.lang.Enum<UseSplit.State>
-
- com.mebigfatguy.fbcontrib.detect.UseSplit.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UseSplit.State>
- Enclosing class:
- UseSplit
static enum UseSplit.State extends java.lang.Enum<UseSplit.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SEEN_ARRAYSTORE
SEEN_COUNTTOKENS
SEEN_HASMORE
SEEN_NEWARRAY
SEEN_NEXT
SEEN_NOTHING
SEEN_STRINGTOKENIZER
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UseSplit.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UseSplit.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEEN_NOTHING
public static final UseSplit.State SEEN_NOTHING
-
SEEN_STRINGTOKENIZER
public static final UseSplit.State SEEN_STRINGTOKENIZER
-
SEEN_COUNTTOKENS
public static final UseSplit.State SEEN_COUNTTOKENS
-
SEEN_NEWARRAY
public static final UseSplit.State SEEN_NEWARRAY
-
SEEN_HASMORE
public static final UseSplit.State SEEN_HASMORE
-
SEEN_NEXT
public static final UseSplit.State SEEN_NEXT
-
SEEN_ARRAYSTORE
public static final UseSplit.State SEEN_ARRAYSTORE
-
-
Method Detail
-
values
public static UseSplit.State[] 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 (UseSplit.State c : UseSplit.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UseSplit.State 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
-
-