public static enum TestFailure.CompareType extends Enum<TestFailure.CompareType>
Enum Constant and Description |
---|
ct_above |
ct_aboveOrEqual |
ct_below |
ct_belowOrEqual |
ct_equal |
Modifier and Type | Method and Description |
---|---|
static TestFailure.CompareType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestFailure.CompareType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestFailure.CompareType ct_below
public static final TestFailure.CompareType ct_belowOrEqual
public static final TestFailure.CompareType ct_equal
public static final TestFailure.CompareType ct_aboveOrEqual
public static final TestFailure.CompareType ct_above
public static TestFailure.CompareType[] values()
for (TestFailure.CompareType c : TestFailure.CompareType.values()) System.out.println(c);
public static TestFailure.CompareType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016–2019. All rights reserved.