Enum SingleFilterSearchRequest.Operator.Value
- java.lang.Object
-
- java.lang.Enum<SingleFilterSearchRequest.Operator.Value>
-
- com.intercom.api.resources.unstable.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 EQUAL_TOGREATER_THANINLESS_THANNINNOT_EQUALSUNKNOWN
-
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
-
EQUAL_TO
public static final SingleFilterSearchRequest.Operator.Value EQUAL_TO
-
NOT_EQUALS
public static final SingleFilterSearchRequest.Operator.Value NOT_EQUALS
-
IN
public static final SingleFilterSearchRequest.Operator.Value IN
-
NIN
public static final SingleFilterSearchRequest.Operator.Value NIN
-
LESS_THAN
public static final SingleFilterSearchRequest.Operator.Value LESS_THAN
-
GREATER_THAN
public static final SingleFilterSearchRequest.Operator.Value GREATER_THAN
-
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
-
-