public enum Operator extends Enum<Operator>
Enum Constant and Description |
---|
CONTAINS |
DOES_NOT_CONTAIN |
DOES_NOT_END_WITH |
DOES_NOT_EQUALS |
DOES_NOT_EXIST |
DOES_NOT_START_WITH |
ENDS_WITH |
EQUALS |
EXISTS |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
IN_TIME_INTERVAL |
IS_EXACTLY |
IS_IN_RANGE |
IS_NOT_EXACTLY |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
STARTS_WITH |
Modifier and Type | Method and 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.
|
public static final Operator IS_EXACTLY
public static final Operator IS_NOT_EXACTLY
public static final Operator EQUALS
public static final Operator DOES_NOT_EQUALS
public static final Operator CONTAINS
public static final Operator DOES_NOT_CONTAIN
public static final Operator LESS_THAN
public static final Operator LESS_THAN_OR_EQUAL_TO
public static final Operator GREATER_THAN
public static final Operator GREATER_THAN_OR_EQUAL_TO
public static final Operator EXISTS
public static final Operator DOES_NOT_EXIST
public static final Operator STARTS_WITH
public static final Operator DOES_NOT_START_WITH
public static final Operator ENDS_WITH
public static final Operator DOES_NOT_END_WITH
public static final Operator IS_IN_RANGE
public static final Operator IN_TIME_INTERVAL
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullLumisXP 12.3.0.200408 - Copyright © 2006–2020 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.