public enum Operator extends Enum<Operator>
| Enum Constant and Description |
|---|
BETWEEN |
CONTAINS |
EQUAL
Represents the various operators for a criteria
|
FUTURE |
GREATER_THAN |
IS_BLANK |
IS_CHECKED |
IS_DATE |
IS_NOT_BLANK |
IS_NOT_CHECKED |
IS_NOT_DATE |
IS_NOT_NUMBER |
IS_NUMBER |
LAST_N_DAYS |
LESS_THAN |
NEXT_N_DAYS |
NOT_EQUAL |
PAST |
TODAY |
| 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 EQUAL
public static final Operator NOT_EQUAL
public static final Operator GREATER_THAN
public static final Operator LESS_THAN
public static final Operator CONTAINS
public static final Operator BETWEEN
public static final Operator TODAY
public static final Operator PAST
public static final Operator FUTURE
public static final Operator LAST_N_DAYS
public static final Operator NEXT_N_DAYS
public static final Operator IS_BLANK
public static final Operator IS_NOT_BLANK
public static final Operator IS_NUMBER
public static final Operator IS_NOT_NUMBER
public static final Operator IS_DATE
public static final Operator IS_NOT_DATE
public static final Operator IS_CHECKED
public static final Operator IS_NOT_CHECKED
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 nullCopyright © 2014–2017 Smartsheet. All rights reserved.