public enum AssertionStdOperator extends java.lang.Enum<AssertionStdOperator>
| Enum Constant and Description |
|---|
_NATIVE_ |
BETWEEN |
CONTAIN |
END_WITH |
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
IN |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
NOT_IN |
NOT_NULL |
REGEX_MATCH |
START_WITH |
| Modifier and Type | Method and Description |
|---|---|
static AssertionStdOperator |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static AssertionStdOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssertionStdOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssertionStdOperator BETWEEN
public static final AssertionStdOperator LESS_THAN
public static final AssertionStdOperator LESS_THAN_OR_EQUAL_TO
public static final AssertionStdOperator GREATER_THAN
public static final AssertionStdOperator GREATER_THAN_OR_EQUAL_TO
public static final AssertionStdOperator EQUAL_TO
public static final AssertionStdOperator NOT_NULL
public static final AssertionStdOperator CONTAIN
public static final AssertionStdOperator END_WITH
public static final AssertionStdOperator START_WITH
public static final AssertionStdOperator REGEX_MATCH
public static final AssertionStdOperator IN
public static final AssertionStdOperator NOT_IN
public static final AssertionStdOperator _NATIVE_
public static AssertionStdOperator[] values()
for (AssertionStdOperator c : AssertionStdOperator.values()) System.out.println(c);
public static AssertionStdOperator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<AssertionStdOperator>public static AssertionStdOperator fromValue(java.lang.String text)