public static enum ParameterProcessorException.ParameterProcessorErrorType extends Enum<ParameterProcessorException.ParameterProcessorErrorType>
Enum Constant and Description |
---|
MISSING_PARAMETER_WHEN_REQUIRED_ERROR
Parameter is required but it's missing
|
PARSING_ERROR
Error during parsing.
|
VALIDATION_ERROR
Error during validation
|
Modifier and Type | Method and Description |
---|---|
static ParameterProcessorException.ParameterProcessorErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterProcessorException.ParameterProcessorErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterProcessorException.ParameterProcessorErrorType MISSING_PARAMETER_WHEN_REQUIRED_ERROR
public static final ParameterProcessorException.ParameterProcessorErrorType PARSING_ERROR
MalformedValueException
public static final ParameterProcessorException.ParameterProcessorErrorType VALIDATION_ERROR
public static ParameterProcessorException.ParameterProcessorErrorType[] values()
for (ParameterProcessorException.ParameterProcessorErrorType c : ParameterProcessorException.ParameterProcessorErrorType.values()) System.out.println(c);
public static ParameterProcessorException.ParameterProcessorErrorType 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.