Package com.mebigfatguy.fbcontrib.detect
Enum DateComparison.State
- java.lang.Object
-
- java.lang.Enum<DateComparison.State>
-
- com.mebigfatguy.fbcontrib.detect.DateComparison.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DateComparison.State>
- Enclosing class:
- DateComparison
static enum DateComparison.State extends java.lang.Enum<DateComparison.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SAW_CMP1
SAW_CMP2
SAW_IFNE
SAW_LOAD1_1
SAW_LOAD1_2
SAW_LOAD2_1
SAW_LOAD2_2
SAW_NOTHING
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DateComparison.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DateComparison.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SAW_NOTHING
public static final DateComparison.State SAW_NOTHING
-
SAW_LOAD1_1
public static final DateComparison.State SAW_LOAD1_1
-
SAW_LOAD1_2
public static final DateComparison.State SAW_LOAD1_2
-
SAW_CMP1
public static final DateComparison.State SAW_CMP1
-
SAW_IFNE
public static final DateComparison.State SAW_IFNE
-
SAW_LOAD2_1
public static final DateComparison.State SAW_LOAD2_1
-
SAW_LOAD2_2
public static final DateComparison.State SAW_LOAD2_2
-
SAW_CMP2
public static final DateComparison.State SAW_CMP2
-
-
Method Detail
-
values
public static DateComparison.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 (DateComparison.State c : DateComparison.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 DateComparison.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
-
-