Uses of Interface
org.forgerock.json.schema.validator.validators.SimpleValidator
-
Packages that use SimpleValidator Package Description 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 SimpleValidator in org.forgerock.json.schema.validator.helpers
Classes in org.forgerock.json.schema.validator.helpers that implement SimpleValidator Modifier and Type Class Description class
DivisibleByHelper
This class checks aNumber
instance.class
EnumHelper
This class implements "enum" validation on all types of objects as defined in the paragraph 5.19 of the JSON Schema specification.class
FormatHelper
This class implements "format" validation on primitive types of objects as defined in the paragraph 5.23 of the JSON Schema specification.class
MaximumHelper
Helper compares twoNumber
s to check the maximum constraint.class
MinimumHelper
Helper compares twoNumber
s to check the minimum constraint. -
Uses of SimpleValidator in org.forgerock.json.schema.validator.validators
Classes in org.forgerock.json.schema.validator.validators that implement SimpleValidator Modifier and Type Class Description class
AnyTypeValidator
AnyTypeValidator applies all the constraints of aany
type.class
ArrayTypeValidator
ArrayTypeValidator applies all the constraints of aarray
type.class
BooleanTypeValidator
BooleanTypeValidator applies all the constraints of aboolean
type.class
IntegerTypeValidator
IntegerTypeValidator applies all the constraints of ainteger
type.class
NullTypeValidator
null Value MUST be null.class
NumberTypeValidator
NumberTypeValidator applies all the constraints of anumber
type.class
ObjectTypeValidator
ObjectTypeValidator applies all the constraints of aobject
type.class
ReferenceTypeValidator
ReferenceTypeValidator holds a reference to another validator.class
StringTypeValidator
StringTypeValidator applies all the constraints of astring
type.class
UnionTypeValidator
Union Types An array of two or more simple validators definitions.class
Validator
Validator is the abstract base class of all typed validator.
-