Package io.objectbox.query
Enum PropertyQueryConditionImpl.LongCondition.Operation
- java.lang.Object
-
- java.lang.Enum<PropertyQueryConditionImpl.LongCondition.Operation>
-
- io.objectbox.query.PropertyQueryConditionImpl.LongCondition.Operation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PropertyQueryConditionImpl.LongCondition.Operation>
- Enclosing class:
- PropertyQueryConditionImpl.LongCondition<T>
public static enum PropertyQueryConditionImpl.LongCondition.Operation extends java.lang.Enum<PropertyQueryConditionImpl.LongCondition.Operation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUAL
GREATER
GREATER_OR_EQUAL
LESS
LESS_OR_EQUAL
NOT_EQUAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PropertyQueryConditionImpl.LongCondition.Operation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PropertyQueryConditionImpl.LongCondition.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUAL
public static final PropertyQueryConditionImpl.LongCondition.Operation EQUAL
-
NOT_EQUAL
public static final PropertyQueryConditionImpl.LongCondition.Operation NOT_EQUAL
-
GREATER
public static final PropertyQueryConditionImpl.LongCondition.Operation GREATER
-
GREATER_OR_EQUAL
public static final PropertyQueryConditionImpl.LongCondition.Operation GREATER_OR_EQUAL
-
LESS
public static final PropertyQueryConditionImpl.LongCondition.Operation LESS
-
LESS_OR_EQUAL
public static final PropertyQueryConditionImpl.LongCondition.Operation LESS_OR_EQUAL
-
-
Method Detail
-
values
public static PropertyQueryConditionImpl.LongCondition.Operation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PropertyQueryConditionImpl.LongCondition.Operation c : PropertyQueryConditionImpl.LongCondition.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertyQueryConditionImpl.LongCondition.Operation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-