Package lumis.service.analytics.commons
Enum Operator
- java.lang.Object
-
- java.lang.Enum<Operator>
-
- lumis.service.analytics.commons.Operator
-
- All Implemented Interfaces:
Serializable
,Comparable<Operator>
public enum Operator extends Enum<Operator>
Available operators.- Since:
- 12.0.0
- Version:
- $Revision: 23035 $ $Date: 2019-08-05 16:55:10 -0300 (Mon, 05 Aug 2019) $
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Operator
valueOf(String name)
Returns the enum constant of this type with the specified name.static Operator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IS_EXACTLY
public static final Operator IS_EXACTLY
-
IS_NOT_EXACTLY
public static final Operator IS_NOT_EXACTLY
-
EQUALS
public static final Operator EQUALS
-
DOES_NOT_EQUALS
public static final Operator DOES_NOT_EQUALS
-
CONTAINS
public static final Operator CONTAINS
-
DOES_NOT_CONTAIN
public static final Operator DOES_NOT_CONTAIN
-
LESS_THAN
public static final Operator LESS_THAN
-
LESS_THAN_OR_EQUAL_TO
public static final Operator LESS_THAN_OR_EQUAL_TO
-
GREATER_THAN
public static final Operator GREATER_THAN
-
GREATER_THAN_OR_EQUAL_TO
public static final Operator GREATER_THAN_OR_EQUAL_TO
-
EXISTS
public static final Operator EXISTS
-
DOES_NOT_EXIST
public static final Operator DOES_NOT_EXIST
-
STARTS_WITH
public static final Operator STARTS_WITH
-
DOES_NOT_START_WITH
public static final Operator DOES_NOT_START_WITH
-
ENDS_WITH
public static final Operator ENDS_WITH
-
DOES_NOT_END_WITH
public static final Operator DOES_NOT_END_WITH
-
IS_IN_RANGE
public static final Operator IS_IN_RANGE
-
IN_TIME_INTERVAL
public static final Operator IN_TIME_INTERVAL
-
-
Method Detail
-
values
public static Operator[] 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 (Operator c : Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Operator 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
-
-