Enum StringConditionOperator
- java.lang.Object
-
- java.lang.Enum<StringConditionOperator>
-
- software.amazon.awssdk.services.backupsearch.model.StringConditionOperator
-
- All Implemented Interfaces:
Serializable,Comparable<StringConditionOperator>
@Generated("software.amazon.awssdk:codegen") public enum StringConditionOperator extends Enum<StringConditionOperator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEGINS_WITHCONTAINSDOES_NOT_BEGIN_WITHDOES_NOT_CONTAINDOES_NOT_END_WITHENDS_WITHEQUALS_TONOT_EQUALS_TOUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StringConditionOperatorfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<StringConditionOperator>knownValues()StringtoString()static StringConditionOperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static StringConditionOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS_TO
public static final StringConditionOperator EQUALS_TO
-
NOT_EQUALS_TO
public static final StringConditionOperator NOT_EQUALS_TO
-
CONTAINS
public static final StringConditionOperator CONTAINS
-
DOES_NOT_CONTAIN
public static final StringConditionOperator DOES_NOT_CONTAIN
-
BEGINS_WITH
public static final StringConditionOperator BEGINS_WITH
-
ENDS_WITH
public static final StringConditionOperator ENDS_WITH
-
DOES_NOT_BEGIN_WITH
public static final StringConditionOperator DOES_NOT_BEGIN_WITH
-
DOES_NOT_END_WITH
public static final StringConditionOperator DOES_NOT_END_WITH
-
UNKNOWN_TO_SDK_VERSION
public static final StringConditionOperator UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static StringConditionOperator[] 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 (StringConditionOperator c : StringConditionOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StringConditionOperator 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<StringConditionOperator>
-
fromValue
public static StringConditionOperator fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- StringConditionOperator corresponding to the value
-
knownValues
public static Set<StringConditionOperator> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownStringConditionOperators
-
-