Enum PhoneNumberFilterName
- java.lang.Object
-
- java.lang.Enum<PhoneNumberFilterName>
-
- software.amazon.awssdk.services.pinpointsmsvoicev2.model.PhoneNumberFilterName
-
- All Implemented Interfaces:
Serializable,Comparable<PhoneNumberFilterName>
@Generated("software.amazon.awssdk:codegen") public enum PhoneNumberFilterName extends Enum<PhoneNumberFilterName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETION_PROTECTION_ENABLEDISO_COUNTRY_CODEMESSAGE_TYPENUMBER_CAPABILITYNUMBER_TYPEOPT_OUT_LIST_NAMESELF_MANAGED_OPT_OUTS_ENABLEDSTATUSTWO_WAY_CHANNEL_ARNTWO_WAY_ENABLEDUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PhoneNumberFilterNamefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<PhoneNumberFilterName>knownValues()StringtoString()static PhoneNumberFilterNamevalueOf(String name)Returns the enum constant of this type with the specified name.static PhoneNumberFilterName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATUS
public static final PhoneNumberFilterName STATUS
-
ISO_COUNTRY_CODE
public static final PhoneNumberFilterName ISO_COUNTRY_CODE
-
MESSAGE_TYPE
public static final PhoneNumberFilterName MESSAGE_TYPE
-
NUMBER_CAPABILITY
public static final PhoneNumberFilterName NUMBER_CAPABILITY
-
NUMBER_TYPE
public static final PhoneNumberFilterName NUMBER_TYPE
-
TWO_WAY_ENABLED
public static final PhoneNumberFilterName TWO_WAY_ENABLED
-
SELF_MANAGED_OPT_OUTS_ENABLED
public static final PhoneNumberFilterName SELF_MANAGED_OPT_OUTS_ENABLED
-
OPT_OUT_LIST_NAME
public static final PhoneNumberFilterName OPT_OUT_LIST_NAME
-
DELETION_PROTECTION_ENABLED
public static final PhoneNumberFilterName DELETION_PROTECTION_ENABLED
-
TWO_WAY_CHANNEL_ARN
public static final PhoneNumberFilterName TWO_WAY_CHANNEL_ARN
-
UNKNOWN_TO_SDK_VERSION
public static final PhoneNumberFilterName UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static PhoneNumberFilterName[] 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 (PhoneNumberFilterName c : PhoneNumberFilterName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PhoneNumberFilterName 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<PhoneNumberFilterName>
-
fromValue
public static PhoneNumberFilterName 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:
- PhoneNumberFilterName corresponding to the value
-
knownValues
public static Set<PhoneNumberFilterName> 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 knownPhoneNumberFilterNames
-
-