public enum ContainsOperator extends java.lang.Enum<ContainsOperator>
| Enum Constant and Description |
|---|
BeginsWith
Begins with a specified value.
|
Contains
Contains a specified value.
|
DoesNotContain
Does not contain the specified value.
|
EndsWith
Ends with the specified value.
|
| Modifier and Type | Method and Description |
|---|---|
static ContainsOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainsOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainsOperator Contains
public static final ContainsOperator DoesNotContain
public static final ContainsOperator BeginsWith
public static final ContainsOperator EndsWith
public static ContainsOperator[] values()
for (ContainsOperator c : ContainsOperator.values()) System.out.println(c);
public static ContainsOperator 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 null