Enum SearchOperation
- java.lang.Object
-
- java.lang.Enum<SearchOperation>
-
- com.calumma.backend.web.repository.core.symbol.SearchOperation
-
- All Implemented Interfaces:
Serializable,Comparable<SearchOperation>
public enum SearchOperation extends Enum<SearchOperation>
-
-
Field Summary
Fields Modifier and Type Field Description static String[]SIMPLE_OPERATION_SET
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchOperationgetSimpleOperation(String input)static SearchOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static SearchOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALITY
public static final SearchOperation EQUALITY
-
NEGATION
public static final SearchOperation NEGATION
-
GREATER_THAN
public static final SearchOperation GREATER_THAN
-
LESS_THAN
public static final SearchOperation LESS_THAN
-
LIKE
public static final SearchOperation LIKE
-
IN
public static final SearchOperation IN
-
-
Field Detail
-
SIMPLE_OPERATION_SET
public static final String[] SIMPLE_OPERATION_SET
-
-
Method Detail
-
values
public static SearchOperation[] 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 (SearchOperation c : SearchOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchOperation valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getSimpleOperation
public static SearchOperation getSimpleOperation(String input)
-
-