public enum ProcessingErrors extends Enum<ProcessingErrors>
com.github.fge.jsonschema.processing
Enum Constant and Description |
---|
CHAIN_STOPPED
Chain deliberately stopped
|
NO_SUITABLE_PROCESSOR
No suitable processor found by a selector
|
NULL_EQUIVALENCE
Attempt to use a null equivalence in a cache
|
NULL_EXCEPTION_PROVIDER
Attempt to set a null exception provider to a message
|
NULL_FUNCTION
Attempt to use a null function in a map selector
|
NULL_KEY
Attempt to use a null key in a map selector
|
NULL_LEVEL
Attempt to set a null log level to a message
|
NULL_PREDICATE
Attempt to use a null predicate
|
NULL_PROCESSOR
Attempt to use a null processor
|
NULL_REPORT
Attempt to submit a null processing report
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ProcessingErrors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingErrors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingErrors NO_SUITABLE_PROCESSOR
ProcessorSelector
,
ProcessorMap
public static final ProcessingErrors NULL_PREDICATE
ProcessorSelector
public static final ProcessingErrors NULL_PROCESSOR
public static final ProcessingErrors NULL_KEY
ProcessorMap
public static final ProcessingErrors NULL_FUNCTION
ProcessorMap
public static final ProcessingErrors NULL_EQUIVALENCE
CachingProcessor
public static final ProcessingErrors CHAIN_STOPPED
ProcessorChain.failOnError()
public static final ProcessingErrors NULL_LEVEL
public static final ProcessingErrors NULL_EXCEPTION_PROVIDER
public static final ProcessingErrors NULL_REPORT
public static ProcessingErrors[] values()
for (ProcessingErrors c : ProcessingErrors.values()) System.out.println(c);
public static ProcessingErrors 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 nullpublic String toString()
toString
in class Enum<ProcessingErrors>
Copyright © 2013. All Rights Reserved.