Uses of Class
org.forgerock.json.schema.validator.ErrorHandler
-
Packages that use ErrorHandler Package Description org.forgerock.json.schema.validator These classes are the commonly used classes from other applications.org.forgerock.json.schema.validator.helpers These classes are capable of helping the validators to check certain constraints.org.forgerock.json.schema.validator.validators These classes are capable of validating the objects against the initially loaded schema. -
-
Uses of ErrorHandler in org.forgerock.json.schema.validator
Subclasses of ErrorHandler in org.forgerock.json.schema.validator Modifier and Type Class Description class
CollectErrorsHandler
The CollectErrorsHandler implements theErrorHandler
and never throws any exception, but collects them so callers can retrieve all of them in one go.class
FailFastErrorHandler
FailFastErrorHandler implements theErrorHandler
in a way it re-throws the exception at first time. -
Uses of ErrorHandler in org.forgerock.json.schema.validator.helpers
Methods in org.forgerock.json.schema.validator.helpers with parameters of type ErrorHandler Modifier and Type Method Description void
DivisibleByHelper. validate(Number node, JsonPointer at, ErrorHandler handler)
void
EnumHelper. validate(Object node, JsonPointer at, ErrorHandler handler)
void
FormatHelper. validate(Object node, JsonPointer at, ErrorHandler handler)
void
MaximumHelper. validate(Number node, JsonPointer at, ErrorHandler handler)
void
MinimumHelper. validate(Number node, JsonPointer at, ErrorHandler handler)
-
Uses of ErrorHandler in org.forgerock.json.schema.validator.validators
Methods in org.forgerock.json.schema.validator.validators with parameters of type ErrorHandler Modifier and Type Method Description void
AnyTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
ArrayTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
BooleanTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
IntegerTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
NullTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
void
NumberTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
ObjectTypeValidator. validate(Object value, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
ReferenceTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
SimpleValidator. validate(T node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
StringTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.void
UnionTypeValidator. validate(Object node, JsonPointer at, ErrorHandler handler)
Validates thenode
value against the embedded schema object.
-