public enum EQueryPartOperation extends Enum<EQueryPartOperation>
| Enum Constant and Description |
|---|
E_BETWEEN
define a 'between' operation where we search a value inside the specified range.
|
E_GREATER_THAN
can be used to find all entities greater than a specified reference value.
|
E_LESS_THAN
can be used to find all entities less than a specified reference value.
|
E_LIKE
define a 'like' operation which supports wildcards like * or ?
|
E_MATCH
define a 'match' operation (equals, ==)
Can be used for all types (int, bool, string, date, time etcpp).
|
| Modifier and Type | Method and Description |
|---|---|
static EQueryPartOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EQueryPartOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EQueryPartOperation E_MATCH
public static final EQueryPartOperation E_LIKE
public static final EQueryPartOperation E_BETWEEN
public static final EQueryPartOperation E_LESS_THAN
public static final EQueryPartOperation E_GREATER_THAN
public static EQueryPartOperation[] values()
for (EQueryPartOperation c : EQueryPartOperation.values()) System.out.println(c);
public static EQueryPartOperation 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 © 2016 as-development.net. All rights reserved.