Uses of Class
org.forgerock.json.schema.validator.exceptions.SchemaException
-
Packages that use SchemaException Package Description org.forgerock.json.schema.validator These classes are the commonly used classes from other applications.org.forgerock.json.schema.validator.exceptions Schema validator exceptions.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 SchemaException in org.forgerock.json.schema.validator
Methods in org.forgerock.json.schema.validator that throw SchemaException Modifier and Type Method Description void
CollectErrorsHandler. error(ValidationException exception)
Receive notification of an error.abstract void
ErrorHandler. error(ValidationException exception)
Receive notification of an error.void
FailFastErrorHandler. error(ValidationException exception)
Receive notification of an error. -
Uses of SchemaException in org.forgerock.json.schema.validator.exceptions
Subclasses of SchemaException in org.forgerock.json.schema.validator.exceptions Modifier and Type Class Description class
ValidationException
Encapsulate a JSON validator error. -
Uses of SchemaException in org.forgerock.json.schema.validator.helpers
Methods in org.forgerock.json.schema.validator.helpers that throw SchemaException 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 SchemaException in org.forgerock.json.schema.validator.validators
Methods in org.forgerock.json.schema.validator.validators that throw SchemaException Modifier and Type Method Description void
AnyTypeValidator. 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
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.
-