public static enum BodyProcessorException.BodyProcessorErrorType extends Enum<BodyProcessorException.BodyProcessorErrorType>
Enum Constant and Description |
---|
MISSING_MATCHING_BODY_PROCESSOR
The provided content type doesn't match any of the managed content type by the mounted
ValidationHandler |
PARSING_ERROR
Error during parsing.
|
VALIDATION_ERROR
Error during validation
|
Modifier and Type | Method and Description |
---|---|
static BodyProcessorException.BodyProcessorErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BodyProcessorException.BodyProcessorErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BodyProcessorException.BodyProcessorErrorType PARSING_ERROR
MalformedValueException
public static final BodyProcessorException.BodyProcessorErrorType VALIDATION_ERROR
public static final BodyProcessorException.BodyProcessorErrorType MISSING_MATCHING_BODY_PROCESSOR
ValidationHandler
public static BodyProcessorException.BodyProcessorErrorType[] values()
for (BodyProcessorException.BodyProcessorErrorType c : BodyProcessorException.BodyProcessorErrorType.values()) System.out.println(c);
public static BodyProcessorException.BodyProcessorErrorType 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.