Enum SearchingFilter.LOGICAL_OP
- java.lang.Object
-
- java.lang.Enum<SearchingFilter.LOGICAL_OP>
-
- org.gcube.application.geoportalcommon.shared.SearchingFilter.LOGICAL_OP
-
- All Implemented Interfaces:
Serializable,Comparable<SearchingFilter.LOGICAL_OP>
- Enclosing class:
- SearchingFilter
public static enum SearchingFilter.LOGICAL_OP extends Enum<SearchingFilter.LOGICAL_OP>
The Enum LOGICAL_OP.- Author:
- Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it Dec 15, 2021
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetOperator()Gets the operator.static SearchingFilter.LOGICAL_OPvalueOf(String name)Returns the enum constant of this type with the specified name.static SearchingFilter.LOGICAL_OP[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AND
public static final SearchingFilter.LOGICAL_OP AND
-
OR
public static final SearchingFilter.LOGICAL_OP OR
-
-
Method Detail
-
values
public static SearchingFilter.LOGICAL_OP[] 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 (SearchingFilter.LOGICAL_OP c : SearchingFilter.LOGICAL_OP.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchingFilter.LOGICAL_OP 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
-
getOperator
public String getOperator()
Gets the operator.- Returns:
- the operator
-
-