Package com.smartsheet.api.models.enums
Enum Operator
- java.lang.Object
-
- java.lang.Enum<Operator>
-
- com.smartsheet.api.models.enums.Operator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BETWEEN
CONTAINS
DOES_NOT_CONTAIN
EQUAL
Represents the various operators for a criteriaFUTURE
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
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Operator
valueOf(java.lang.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
-
EQUAL
public static final Operator EQUAL
Represents the various operators for a criteria
-
NOT_EQUAL
public static final Operator NOT_EQUAL
-
GREATER_THAN
public static final Operator GREATER_THAN
-
GREATER_THAN_OR_EQUAL
public static final Operator GREATER_THAN_OR_EQUAL
-
LESS_THAN
public static final Operator LESS_THAN
-
LESS_THAN_OR_EQUAL
public static final Operator LESS_THAN_OR_EQUAL
-
CONTAINS
public static final Operator CONTAINS
-
DOES_NOT_CONTAIN
public static final Operator DOES_NOT_CONTAIN
-
BETWEEN
public static final Operator BETWEEN
-
NOT_BETWEEN
public static final Operator NOT_BETWEEN
-
TODAY
public static final Operator TODAY
-
NOT_TODAY
public static final Operator NOT_TODAY
-
PAST
public static final Operator PAST
-
NOT_PAST
public static final Operator NOT_PAST
-
FUTURE
public static final Operator FUTURE
-
NOT_FUTURE
public static final Operator NOT_FUTURE
-
LAST_N_DAYS
public static final Operator LAST_N_DAYS
-
NOT_LAST_N_DAYS
public static final Operator NOT_LAST_N_DAYS
-
NEXT_N_DAYS
public static final Operator NEXT_N_DAYS
-
NOT_NEXT_N_DAYS
public static final Operator NOT_NEXT_N_DAYS
-
IS_BLANK
public static final Operator IS_BLANK
-
IS_NOT_BLANK
public static final Operator IS_NOT_BLANK
-
IS_NUMBER
public static final Operator IS_NUMBER
-
IS_NOT_NUMBER
public static final Operator IS_NOT_NUMBER
-
IS_DATE
public static final Operator IS_DATE
-
IS_NOT_DATE
public static final Operator IS_NOT_DATE
-
IS_CHECKED
public static final Operator IS_CHECKED
-
IS_NOT_CHECKED
public static final Operator IS_NOT_CHECKED
-
IS_ONE_OF
public static final Operator IS_ONE_OF
-
IS_NOT_ONE_OF
public static final Operator IS_NOT_ONE_OF
-
IS_CURRENT_USER
public static final Operator IS_CURRENT_USER
-
IS_NOT_CURRENT_USER
public static final Operator IS_NOT_CURRENT_USER
-
ON_CRITICAL_PATH
public static final Operator ON_CRITICAL_PATH
-
NOT_ON_CRITICAL_PATH
public static final Operator NOT_ON_CRITICAL_PATH
-
HAS_ATTACHMENTS
public static final Operator HAS_ATTACHMENTS
-
NO_ATTACHMENTS
public static final Operator NO_ATTACHMENTS
-
HAS_COMMENTS
public static final Operator HAS_COMMENTS
-
NO_COMMENTS
public static final Operator NO_COMMENTS
-
HAS_ANY_OF
public static final Operator HAS_ANY_OF
-
HAS_NONE_OF
public static final Operator HAS_NONE_OF
-
HAS_ALL_OF
public static final Operator HAS_ALL_OF
-
NOT_ALL_OF
public static final Operator NOT_ALL_OF
-
-
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-