Enum ValidationErrorId
- java.lang.Object
-
- java.lang.Enum<ValidationErrorId>
-
- software.amazon.awssdk.codegen.validation.ValidationErrorId
-
- All Implemented Interfaces:
Serializable
,Comparable<ValidationErrorId>
public enum ValidationErrorId extends Enum<ValidationErrorId>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INVALID_CODEGEN_CUSTOMIZATION
INVALID_IDENTIFIER_NAME
REQUEST_URI_NOT_FOUND
SHARED_MODELS_DIFFER
UNKNOWN_OPERATION
UNKNOWN_SHAPE_MEMBER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidationErrorId
valueOf(String name)
Returns the enum constant of this type with the specified name.static ValidationErrorId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHARED_MODELS_DIFFER
public static final ValidationErrorId SHARED_MODELS_DIFFER
-
UNKNOWN_SHAPE_MEMBER
public static final ValidationErrorId UNKNOWN_SHAPE_MEMBER
-
REQUEST_URI_NOT_FOUND
public static final ValidationErrorId REQUEST_URI_NOT_FOUND
-
INVALID_CODEGEN_CUSTOMIZATION
public static final ValidationErrorId INVALID_CODEGEN_CUSTOMIZATION
-
UNKNOWN_OPERATION
public static final ValidationErrorId UNKNOWN_OPERATION
-
INVALID_IDENTIFIER_NAME
public static final ValidationErrorId INVALID_IDENTIFIER_NAME
-
-
Method Detail
-
values
public static ValidationErrorId[] 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 (ValidationErrorId c : ValidationErrorId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidationErrorId 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
-
-