public enum StringOperator extends java.lang.Enum<StringOperator>
| Enum Constant and Description |
|---|
CONTAINS |
ENDS_WITH |
EQUALS |
EQUALS_IGNORE_CASE |
NOT_CONTAINS |
NOT_ENDS_WITH |
NOT_EQUALS |
NOT_EQUALS_IGNORE_CASE |
NOT_STARTS_WITH |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
check(java.lang.String pStringA,
java.lang.String pStringB) |
static StringOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringOperator EQUALS
public static final StringOperator EQUALS_IGNORE_CASE
public static final StringOperator NOT_EQUALS
public static final StringOperator NOT_EQUALS_IGNORE_CASE
public static final StringOperator CONTAINS
public static final StringOperator NOT_CONTAINS
public static final StringOperator STARTS_WITH
public static final StringOperator NOT_STARTS_WITH
public static final StringOperator ENDS_WITH
public static final StringOperator NOT_ENDS_WITH
public static StringOperator[] values()
for (StringOperator c : StringOperator.values()) System.out.println(c);
public static StringOperator 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 abstract boolean check(java.lang.String pStringA,
java.lang.String pStringB)