Enum ConflictExceptionReason
- java.lang.Object
-
- java.lang.Enum<ConflictExceptionReason>
-
- software.amazon.awssdk.services.pinpointsmsvoicev2.model.ConflictExceptionReason
-
- All Implemented Interfaces:
Serializable,Comparable<ConflictExceptionReason>
@Generated("software.amazon.awssdk:codegen") public enum ConflictExceptionReason extends Enum<ConflictExceptionReason>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConflictExceptionReasonfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ConflictExceptionReason>knownValues()StringtoString()static ConflictExceptionReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static ConflictExceptionReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_REGISTRATION_VERSION_NOT_ALLOWED
public static final ConflictExceptionReason CREATE_REGISTRATION_VERSION_NOT_ALLOWED
-
DELETION_PROTECTION_ENABLED
public static final ConflictExceptionReason DELETION_PROTECTION_ENABLED
-
DESTINATION_PHONE_NUMBER_NOT_VERIFIED
public static final ConflictExceptionReason DESTINATION_PHONE_NUMBER_NOT_VERIFIED
-
DESTINATION_PHONE_NUMBER_OPTED_OUT
public static final ConflictExceptionReason DESTINATION_PHONE_NUMBER_OPTED_OUT
-
DISASSOCIATE_REGISTRATION_NOT_ALLOWED
public static final ConflictExceptionReason DISASSOCIATE_REGISTRATION_NOT_ALLOWED
-
DISCARD_REGISTRATION_VERSION_NOT_ALLOWED
public static final ConflictExceptionReason DISCARD_REGISTRATION_VERSION_NOT_ALLOWED
-
EDIT_REGISTRATION_FIELD_VALUES_NOT_ALLOWED
public static final ConflictExceptionReason EDIT_REGISTRATION_FIELD_VALUES_NOT_ALLOWED
-
EVENT_DESTINATION_MISMATCH
public static final ConflictExceptionReason EVENT_DESTINATION_MISMATCH
-
KEYWORD_MISMATCH
public static final ConflictExceptionReason KEYWORD_MISMATCH
-
LAST_PHONE_NUMBER
public static final ConflictExceptionReason LAST_PHONE_NUMBER
-
NUMBER_CAPABILITIES_MISMATCH
public static final ConflictExceptionReason NUMBER_CAPABILITIES_MISMATCH
-
MESSAGE_TYPE_MISMATCH
public static final ConflictExceptionReason MESSAGE_TYPE_MISMATCH
-
NO_ORIGINATION_IDENTITIES_FOUND
public static final ConflictExceptionReason NO_ORIGINATION_IDENTITIES_FOUND
-
OPT_OUT_LIST_MISMATCH
public static final ConflictExceptionReason OPT_OUT_LIST_MISMATCH
-
PHONE_NUMBER_ASSOCIATED_TO_POOL
public static final ConflictExceptionReason PHONE_NUMBER_ASSOCIATED_TO_POOL
-
PHONE_NUMBER_ASSOCIATED_TO_REGISTRATION
public static final ConflictExceptionReason PHONE_NUMBER_ASSOCIATED_TO_REGISTRATION
-
PHONE_NUMBER_NOT_ASSOCIATED_TO_POOL
public static final ConflictExceptionReason PHONE_NUMBER_NOT_ASSOCIATED_TO_POOL
-
PHONE_NUMBER_NOT_IN_REGISTRATION_REGION
public static final ConflictExceptionReason PHONE_NUMBER_NOT_IN_REGISTRATION_REGION
-
REGISTRATION_ALREADY_SUBMITTED
public static final ConflictExceptionReason REGISTRATION_ALREADY_SUBMITTED
-
REGISTRATION_NOT_COMPLETE
public static final ConflictExceptionReason REGISTRATION_NOT_COMPLETE
-
SENDER_ID_ASSOCIATED_TO_POOL
public static final ConflictExceptionReason SENDER_ID_ASSOCIATED_TO_POOL
-
RESOURCE_ALREADY_EXISTS
public static final ConflictExceptionReason RESOURCE_ALREADY_EXISTS
-
RESOURCE_DELETION_NOT_ALLOWED
public static final ConflictExceptionReason RESOURCE_DELETION_NOT_ALLOWED
-
RESOURCE_MODIFICATION_NOT_ALLOWED
public static final ConflictExceptionReason RESOURCE_MODIFICATION_NOT_ALLOWED
-
RESOURCE_NOT_ACTIVE
public static final ConflictExceptionReason RESOURCE_NOT_ACTIVE
-
RESOURCE_NOT_EMPTY
public static final ConflictExceptionReason RESOURCE_NOT_EMPTY
-
SELF_MANAGED_OPT_OUTS_MISMATCH
public static final ConflictExceptionReason SELF_MANAGED_OPT_OUTS_MISMATCH
-
SUBMIT_REGISTRATION_VERSION_NOT_ALLOWED
public static final ConflictExceptionReason SUBMIT_REGISTRATION_VERSION_NOT_ALLOWED
-
TWO_WAY_CONFIG_MISMATCH
public static final ConflictExceptionReason TWO_WAY_CONFIG_MISMATCH
-
VERIFICATION_CODE_EXPIRED
public static final ConflictExceptionReason VERIFICATION_CODE_EXPIRED
-
VERIFICATION_ALREADY_COMPLETE
public static final ConflictExceptionReason VERIFICATION_ALREADY_COMPLETE
-
UNKNOWN_TO_SDK_VERSION
public static final ConflictExceptionReason UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ConflictExceptionReason[] 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 (ConflictExceptionReason c : ConflictExceptionReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConflictExceptionReason 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<ConflictExceptionReason>
-
fromValue
public static ConflictExceptionReason 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:
- ConflictExceptionReason corresponding to the value
-
knownValues
public static Set<ConflictExceptionReason> 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 knownConflictExceptionReasons
-
-