Enum ValidatorErrorType
- All Implemented Interfaces:
Serializable, Comparable<ValidatorErrorType>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe value of the related parameter can't be decoded.The value of the related parameter does not fit to the schema.The format of the related value does not fit to the expectedStyleThe request can't get validated due to missing operation information.A required parameter was not part of the request or responseThe response can't get validated due to missing response definition for the related status code information.Transformation to the chosen output format is not supported.The format of the related value is not yet supported. -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidatorErrorTypeReturns the enum constant of this type with the specified name.static ValidatorErrorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
MISSING_REQUIRED_PARAMETER
A required parameter was not part of the request or response -
INVALID_VALUE_FORMAT
The format of the related value does not fit to the expectedStyle -
UNSUPPORTED_VALUE_FORMAT
The format of the related value is not yet supported. -
ILLEGAL_VALUE
The value of the related parameter can't be decoded. -
INVALID_VALUE
The value of the related parameter does not fit to the schema. -
MISSING_OPERATION
The request can't get validated due to missing operation information. -
MISSING_RESPONSE
The response can't get validated due to missing response definition for the related status code information. -
UNSUPPORTED_TRANSFORMATION
Transformation to the chosen output format is not supported.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-