public static enum BaseTest.Condition extends Enum<BaseTest.Condition>
| Modifier and Type | Method and Description |
|---|---|
static BaseTest.Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseTest.Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseTest.Condition EQUALS
public static final BaseTest.Condition NULL
public static final BaseTest.Condition NOTNULL
public static final BaseTest.Condition GT
public static final BaseTest.Condition GE
public static final BaseTest.Condition LT
public static final BaseTest.Condition LE
public static BaseTest.Condition[] values()
for (BaseTest.Condition c : BaseTest.Condition.values()) System.out.println(c);
public static BaseTest.Condition 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 © 2012–2018. All rights reserved.