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