Package com.mebigfatguy.fbcontrib.detect
Enum UnitTestAssertionOddities.State
- java.lang.Object
-
- java.lang.Enum<UnitTestAssertionOddities.State>
-
- com.mebigfatguy.fbcontrib.detect.UnitTestAssertionOddities.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UnitTestAssertionOddities.State>
- Enclosing class:
- UnitTestAssertionOddities
private static enum UnitTestAssertionOddities.State extends java.lang.Enum<UnitTestAssertionOddities.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SAW_EQUALS
SAW_GOTO
SAW_ICONST_0
SAW_ICONST_1
SAW_IF_ICMPEQ
SAW_IF_ICMPNE
SAW_IF_NE
SAW_NOTHING
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UnitTestAssertionOddities.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UnitTestAssertionOddities.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 UnitTestAssertionOddities.State SAW_NOTHING
-
SAW_IF_ICMPNE
public static final UnitTestAssertionOddities.State SAW_IF_ICMPNE
-
SAW_IF_NE
public static final UnitTestAssertionOddities.State SAW_IF_NE
-
SAW_IF_ICMPEQ
public static final UnitTestAssertionOddities.State SAW_IF_ICMPEQ
-
SAW_ICONST_1
public static final UnitTestAssertionOddities.State SAW_ICONST_1
-
SAW_GOTO
public static final UnitTestAssertionOddities.State SAW_GOTO
-
SAW_ICONST_0
public static final UnitTestAssertionOddities.State SAW_ICONST_0
-
SAW_EQUALS
public static final UnitTestAssertionOddities.State SAW_EQUALS
-
-
Method Detail
-
values
public static UnitTestAssertionOddities.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 (UnitTestAssertionOddities.State c : UnitTestAssertionOddities.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 UnitTestAssertionOddities.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
-
-