Package com.intercom.api.types
Enum SingleFilterSearchRequest.Operator.Value
- java.lang.Object
-
- java.lang.Enum<SingleFilterSearchRequest.Operator.Value>
-
- com.intercom.api.types.SingleFilterSearchRequest.Operator.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SingleFilterSearchRequest.Operator.Value>
- Enclosing class:
- SingleFilterSearchRequest.Operator
public static enum SingleFilterSearchRequest.Operator.Value extends java.lang.Enum<SingleFilterSearchRequest.Operator.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSDOES_NOT_CONTAINENDS_WITHEQUALSGREATER_THANINLESS_THANNOT_EQUALSNOT_INSTARTS_WITHUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SingleFilterSearchRequest.Operator.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SingleFilterSearchRequest.Operator.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final SingleFilterSearchRequest.Operator.Value EQUALS
-
NOT_EQUALS
public static final SingleFilterSearchRequest.Operator.Value NOT_EQUALS
-
IN
public static final SingleFilterSearchRequest.Operator.Value IN
-
NOT_IN
public static final SingleFilterSearchRequest.Operator.Value NOT_IN
-
LESS_THAN
public static final SingleFilterSearchRequest.Operator.Value LESS_THAN
-
GREATER_THAN
public static final SingleFilterSearchRequest.Operator.Value GREATER_THAN
-
CONTAINS
public static final SingleFilterSearchRequest.Operator.Value CONTAINS
-
DOES_NOT_CONTAIN
public static final SingleFilterSearchRequest.Operator.Value DOES_NOT_CONTAIN
-
STARTS_WITH
public static final SingleFilterSearchRequest.Operator.Value STARTS_WITH
-
ENDS_WITH
public static final SingleFilterSearchRequest.Operator.Value ENDS_WITH
-
UNKNOWN
public static final SingleFilterSearchRequest.Operator.Value UNKNOWN
-
-
Method Detail
-
values
public static SingleFilterSearchRequest.Operator.Value[] 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 (SingleFilterSearchRequest.Operator.Value c : SingleFilterSearchRequest.Operator.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SingleFilterSearchRequest.Operator.Value 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
-
-