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