Enum FieldFilter.Type
- java.lang.Object
-
- java.lang.Enum<FieldFilter.Type>
-
- software.amazon.awssdk.services.connectcases.model.FieldFilter.Type
-
- All Implemented Interfaces:
Serializable,Comparable<FieldFilter.Type>
- Enclosing class:
- FieldFilter
public static enum FieldFilter.Type extends Enum<FieldFilter.Type>
- See Also:
FieldFilter.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSEQUAL_TOGREATER_THANGREATER_THAN_OR_EQUAL_TOLESS_THANLESS_THAN_OR_EQUAL_TOUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FieldFilter.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static FieldFilter.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTAINS
public static final FieldFilter.Type CONTAINS
-
EQUAL_TO
public static final FieldFilter.Type EQUAL_TO
-
GREATER_THAN
public static final FieldFilter.Type GREATER_THAN
-
GREATER_THAN_OR_EQUAL_TO
public static final FieldFilter.Type GREATER_THAN_OR_EQUAL_TO
-
LESS_THAN
public static final FieldFilter.Type LESS_THAN
-
LESS_THAN_OR_EQUAL_TO
public static final FieldFilter.Type LESS_THAN_OR_EQUAL_TO
-
UNKNOWN_TO_SDK_VERSION
public static final FieldFilter.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static FieldFilter.Type[] 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 (FieldFilter.Type c : FieldFilter.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldFilter.Type valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-