@Deprecated public enum SearchOperand extends Enum<SearchOperand>
| Enum Constant and Description |
|---|
BEGINS_WITH
Deprecated.
|
BETWEEN
Deprecated.
|
CONTAINS
Deprecated.
|
ENDS_WITH
Deprecated.
|
EQUALS
Deprecated.
|
GREATER
Deprecated.
|
GREATER_OR_EQUALS
Deprecated.
|
LESS
Deprecated.
|
LESS_OR_EQUALS
Deprecated.
|
NOT_CONTAINS
Deprecated.
|
NOT_EQUALS
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchOperand |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static SearchOperand[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchOperand EQUALS
public static final SearchOperand NOT_EQUALS
public static final SearchOperand LESS
public static final SearchOperand LESS_OR_EQUALS
public static final SearchOperand GREATER
public static final SearchOperand GREATER_OR_EQUALS
public static final SearchOperand BEGINS_WITH
public static final SearchOperand ENDS_WITH
public static final SearchOperand CONTAINS
public static final SearchOperand NOT_CONTAINS
public static final SearchOperand BETWEEN
public static SearchOperand[] values()
for (SearchOperand c : SearchOperand.values()) System.out.println(c);
public static SearchOperand 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 © 2009-2012 CodeLutin. All Rights Reserved.