Package de.elo.ix.client
Enum Class IndexSearchOperator
- All Implemented Interfaces:
Serializable
,Comparable<IndexSearchOperator>
,Constable
The constants in this class define the supported operations for conditions when searching for
aspect objects in the database.
- Since:
- 21.03.000.003
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe value in the database must be equal to the given value.The value in the database must be greater than or equal to including the given value.The value in the database must be greater than the given value.Checks if the value of the respective index line isnull
or empty.Checks if the value of the respective index line isnull
.The value in the database must be 'like' the given value.The value in the database must be lower than or equal to including the given value.The value in the database must be lower than the given value. -
Method Summary
Modifier and TypeMethodDescriptionboolean
isUnary()
static IndexSearchOperator
Returns the enum constant of this class with the specified name.static IndexSearchOperator[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GREATER_THAN
The value in the database must be greater than the given value. That implies that the given value itself is excluded. -
GREATER
The value in the database must be greater than or equal to including the given value. -
LOWER_THAN
The value in the database must be lower than the given value. That implies that the given value itself is excluded. -
LOWER
The value in the database must be lower than or equal to including the given value. -
EQUALS
The value in the database must be equal to the given value. -
LIKE
The value in the database must be 'like' the given value.LIKE
supports wildcards, seeFindOptions.wildcards
.
Please be advised that the usage of wildcards at any another position than the last one lead to slow search performance especially in large databases as the database system is not able to use any index. -
ISNULL
Checks if the value of the respective index line isnull
. This is an unary operation and does not need an operand in e.g.IndexSearchStringValue
. -
ISEMPTY
Checks if the value of the respective index line isnull
or empty. This is an unary operation and does not need an operand in e.g.IndexSearchStringValue
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isUnary
public boolean isUnary()
-