public enum ValidatorErrorType extends Enum<ValidatorErrorType>
Enum Constant and Description |
---|
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.
|
INVALID_VALUE_FORMAT
The format of the related value does not fit to the expected
Style |
MISSING_OPERATION
The request can't get validated due to missing operation information.
|
MISSING_REQUIRED_PARAMETER
A required parameter was not part of the request or response
|
MISSING_RESPONSE
The response can't get validated due to missing response definition for the related status code information.
|
UNSUPPORTED_VALUE_FORMAT
The format of the related value is not yet supported.
|
Modifier and Type | Method and Description |
---|---|
static ValidatorErrorType |
valueOf(String name)
Returns 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.
|
public static final ValidatorErrorType MISSING_REQUIRED_PARAMETER
public static final ValidatorErrorType INVALID_VALUE_FORMAT
Style
public static final ValidatorErrorType UNSUPPORTED_VALUE_FORMAT
public static final ValidatorErrorType ILLEGAL_VALUE
public static final ValidatorErrorType INVALID_VALUE
public static final ValidatorErrorType MISSING_OPERATION
public static final ValidatorErrorType MISSING_RESPONSE
public static ValidatorErrorType[] values()
for (ValidatorErrorType c : ValidatorErrorType.values()) System.out.println(c);
public static ValidatorErrorType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024 Eclipse. All rights reserved.