Package io.objectbox.query
Enum PropertyQueryConditionImpl.StringCondition.Operation
- java.lang.Object
-
- java.lang.Enum<PropertyQueryConditionImpl.StringCondition.Operation>
-
- io.objectbox.query.PropertyQueryConditionImpl.StringCondition.Operation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PropertyQueryConditionImpl.StringCondition.Operation>
- Enclosing class:
- PropertyQueryConditionImpl.StringCondition<T>
public static enum PropertyQueryConditionImpl.StringCondition.Operation extends java.lang.Enum<PropertyQueryConditionImpl.StringCondition.Operation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINS
CONTAINS_ELEMENT
ENDS_WITH
EQUAL
GREATER
GREATER_OR_EQUAL
LESS
LESS_OR_EQUAL
NOT_EQUAL
STARTS_WITH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PropertyQueryConditionImpl.StringCondition.Operation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PropertyQueryConditionImpl.StringCondition.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.StringCondition.Operation EQUAL
-
NOT_EQUAL
public static final PropertyQueryConditionImpl.StringCondition.Operation NOT_EQUAL
-
GREATER
public static final PropertyQueryConditionImpl.StringCondition.Operation GREATER
-
GREATER_OR_EQUAL
public static final PropertyQueryConditionImpl.StringCondition.Operation GREATER_OR_EQUAL
-
LESS
public static final PropertyQueryConditionImpl.StringCondition.Operation LESS
-
LESS_OR_EQUAL
public static final PropertyQueryConditionImpl.StringCondition.Operation LESS_OR_EQUAL
-
CONTAINS
public static final PropertyQueryConditionImpl.StringCondition.Operation CONTAINS
-
CONTAINS_ELEMENT
public static final PropertyQueryConditionImpl.StringCondition.Operation CONTAINS_ELEMENT
-
STARTS_WITH
public static final PropertyQueryConditionImpl.StringCondition.Operation STARTS_WITH
-
ENDS_WITH
public static final PropertyQueryConditionImpl.StringCondition.Operation ENDS_WITH
-
-
Method Detail
-
values
public static PropertyQueryConditionImpl.StringCondition.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.StringCondition.Operation c : PropertyQueryConditionImpl.StringCondition.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.StringCondition.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
-
-