Enum BatchWriteExceptionType
- java.lang.Object
-
- java.lang.Enum<BatchWriteExceptionType>
-
- software.amazon.awssdk.services.clouddirectory.model.BatchWriteExceptionType
-
- All Implemented Interfaces:
Serializable,Comparable<BatchWriteExceptionType>
@Generated("software.amazon.awssdk:codegen") public enum BatchWriteExceptionType extends Enum<BatchWriteExceptionType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BatchWriteExceptionTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<BatchWriteExceptionType>knownValues()StringtoString()static BatchWriteExceptionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BatchWriteExceptionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERNAL_SERVICE_EXCEPTION
public static final BatchWriteExceptionType INTERNAL_SERVICE_EXCEPTION
-
VALIDATION_EXCEPTION
public static final BatchWriteExceptionType VALIDATION_EXCEPTION
-
INVALID_ARN_EXCEPTION
public static final BatchWriteExceptionType INVALID_ARN_EXCEPTION
-
LINK_NAME_ALREADY_IN_USE_EXCEPTION
public static final BatchWriteExceptionType LINK_NAME_ALREADY_IN_USE_EXCEPTION
-
STILL_CONTAINS_LINKS_EXCEPTION
public static final BatchWriteExceptionType STILL_CONTAINS_LINKS_EXCEPTION
-
FACET_VALIDATION_EXCEPTION
public static final BatchWriteExceptionType FACET_VALIDATION_EXCEPTION
-
OBJECT_NOT_DETACHED_EXCEPTION
public static final BatchWriteExceptionType OBJECT_NOT_DETACHED_EXCEPTION
-
RESOURCE_NOT_FOUND_EXCEPTION
public static final BatchWriteExceptionType RESOURCE_NOT_FOUND_EXCEPTION
-
ACCESS_DENIED_EXCEPTION
public static final BatchWriteExceptionType ACCESS_DENIED_EXCEPTION
-
INVALID_ATTACHMENT_EXCEPTION
public static final BatchWriteExceptionType INVALID_ATTACHMENT_EXCEPTION
-
NOT_INDEX_EXCEPTION
public static final BatchWriteExceptionType NOT_INDEX_EXCEPTION
-
NOT_NODE_EXCEPTION
public static final BatchWriteExceptionType NOT_NODE_EXCEPTION
-
INDEXED_ATTRIBUTE_MISSING_EXCEPTION
public static final BatchWriteExceptionType INDEXED_ATTRIBUTE_MISSING_EXCEPTION
-
OBJECT_ALREADY_DETACHED_EXCEPTION
public static final BatchWriteExceptionType OBJECT_ALREADY_DETACHED_EXCEPTION
-
NOT_POLICY_EXCEPTION
public static final BatchWriteExceptionType NOT_POLICY_EXCEPTION
-
DIRECTORY_NOT_ENABLED_EXCEPTION
public static final BatchWriteExceptionType DIRECTORY_NOT_ENABLED_EXCEPTION
-
LIMIT_EXCEEDED_EXCEPTION
public static final BatchWriteExceptionType LIMIT_EXCEEDED_EXCEPTION
-
UNSUPPORTED_INDEX_TYPE_EXCEPTION
public static final BatchWriteExceptionType UNSUPPORTED_INDEX_TYPE_EXCEPTION
-
UNKNOWN_TO_SDK_VERSION
public static final BatchWriteExceptionType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static BatchWriteExceptionType[] 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 (BatchWriteExceptionType c : BatchWriteExceptionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BatchWriteExceptionType 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<BatchWriteExceptionType>
-
fromValue
public static BatchWriteExceptionType 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:
- BatchWriteExceptionType corresponding to the value
-
knownValues
public static Set<BatchWriteExceptionType> 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 knownBatchWriteExceptionTypes
-
-