public enum CompareMethod extends Enum<CompareMethod>
Enum Constant and Description |
---|
BEFORE |
ENDS |
EQUALS |
LIKE |
NOT_EQUALS |
RANGE |
STARTS |
Modifier and Type | Method and Description |
---|---|
static CompareMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompareMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareMethod BEFORE
public static final CompareMethod STARTS
public static final CompareMethod ENDS
public static final CompareMethod LIKE
public static final CompareMethod EQUALS
public static final CompareMethod NOT_EQUALS
public static final CompareMethod RANGE
public static CompareMethod[] values()
for (CompareMethod c : CompareMethod.values()) System.out.println(c);
public static CompareMethod 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 © 2015. All rights reserved.