public enum Operator extends Enum<Operator>
| Enum Constant and Description |
|---|
BETWEEN |
CONTAINS |
DOES_NOT_CONTAIN |
EQUAL
Represents the various operators for a criteria
|
FUTURE |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
HAS_ALL_OF |
HAS_ANY_OF |
HAS_ATTACHMENTS |
HAS_COMMENTS |
HAS_NONE_OF |
IS_BLANK |
IS_CHECKED |
IS_CURRENT_USER |
IS_DATE |
IS_NOT_BLANK |
IS_NOT_CHECKED |
IS_NOT_CURRENT_USER |
IS_NOT_DATE |
IS_NOT_NUMBER |
IS_NOT_ONE_OF |
IS_NUMBER |
IS_ONE_OF |
LAST_N_DAYS |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NEXT_N_DAYS |
NO_ATTACHMENTS |
NO_COMMENTS |
NOT_ALL_OF |
NOT_BETWEEN |
NOT_EQUAL |
NOT_FUTURE |
NOT_LAST_N_DAYS |
NOT_NEXT_N_DAYS |
NOT_ON_CRITICAL_PATH |
NOT_PAST |
NOT_TODAY |
ON_CRITICAL_PATH |
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 GREATER_THAN_OR_EQUAL
public static final Operator LESS_THAN
public static final Operator LESS_THAN_OR_EQUAL
public static final Operator CONTAINS
public static final Operator DOES_NOT_CONTAIN
public static final Operator BETWEEN
public static final Operator NOT_BETWEEN
public static final Operator TODAY
public static final Operator NOT_TODAY
public static final Operator PAST
public static final Operator NOT_PAST
public static final Operator FUTURE
public static final Operator NOT_FUTURE
public static final Operator LAST_N_DAYS
public static final Operator NOT_LAST_N_DAYS
public static final Operator NEXT_N_DAYS
public static final Operator NOT_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 final Operator IS_ONE_OF
public static final Operator IS_NOT_ONE_OF
public static final Operator IS_CURRENT_USER
public static final Operator IS_NOT_CURRENT_USER
public static final Operator ON_CRITICAL_PATH
public static final Operator NOT_ON_CRITICAL_PATH
public static final Operator HAS_ATTACHMENTS
public static final Operator NO_ATTACHMENTS
public static final Operator HAS_COMMENTS
public static final Operator NO_COMMENTS
public static final Operator HAS_ANY_OF
public static final Operator HAS_NONE_OF
public static final Operator HAS_ALL_OF
public static final Operator NOT_ALL_OF
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–2019 Smartsheet. All rights reserved.