Enum ErrorDetails
- java.lang.Object
-
- java.lang.Enum<ErrorDetails>
-
- software.amazon.awssdk.services.finspace.model.ErrorDetails
-
- All Implemented Interfaces:
Serializable,Comparable<ErrorDetails>
@Generated("software.amazon.awssdk:codegen") public enum ErrorDetails extends Enum<ErrorDetails>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ErrorDetailsfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ErrorDetails>knownValues()StringtoString()static ErrorDetailsvalueOf(String name)Returns the enum constant of this type with the specified name.static ErrorDetails[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
THE_INPUTS_TO_THIS_REQUEST_ARE_INVALID
public static final ErrorDetails THE_INPUTS_TO_THIS_REQUEST_ARE_INVALID
-
SERVICE_LIMITS_HAVE_BEEN_EXCEEDED
public static final ErrorDetails SERVICE_LIMITS_HAVE_BEEN_EXCEEDED
-
MISSING_REQUIRED_PERMISSION_TO_PERFORM_THIS_REQUEST
public static final ErrorDetails MISSING_REQUIRED_PERMISSION_TO_PERFORM_THIS_REQUEST
-
ONE_OR_MORE_INPUTS_TO_THIS_REQUEST_WERE_NOT_FOUND
public static final ErrorDetails ONE_OR_MORE_INPUTS_TO_THIS_REQUEST_WERE_NOT_FOUND
-
THE_SYSTEM_TEMPORARILY_LACKS_SUFFICIENT_RESOURCES_TO_PROCESS_THE_REQUEST
public static final ErrorDetails THE_SYSTEM_TEMPORARILY_LACKS_SUFFICIENT_RESOURCES_TO_PROCESS_THE_REQUEST
-
AN_INTERNAL_ERROR_HAS_OCCURRED
public static final ErrorDetails AN_INTERNAL_ERROR_HAS_OCCURRED
-
CANCELLED
public static final ErrorDetails CANCELLED
-
A_USER_RECOVERABLE_ERROR_HAS_OCCURRED
public static final ErrorDetails A_USER_RECOVERABLE_ERROR_HAS_OCCURRED
-
UNKNOWN_TO_SDK_VERSION
public static final ErrorDetails UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ErrorDetails[] 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 (ErrorDetails c : ErrorDetails.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorDetails 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<ErrorDetails>
-
fromValue
public static ErrorDetails 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:
- ErrorDetails corresponding to the value
-
knownValues
public static Set<ErrorDetails> 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 knownErrorDetailss
-
-