Uses of Class
org.forgerock.json.schema.validator.validators.Validator
-
Packages that use Validator Package Description org.forgerock.json.schema.validator These classes are the commonly used classes from other applications.org.forgerock.json.schema.validator.validators These classes are capable of validating the objects against the initially loaded schema. -
-
Uses of Validator in org.forgerock.json.schema.validator
Methods in org.forgerock.json.schema.validator that return Validator Modifier and Type Method Description static Validator
ObjectValidatorFactory. getTypeValidator(String type, Map<String,Object> schema, List<String> jsonPointer)
Instantiates a validator of the passed in type with the given schema.static Validator
ObjectValidatorFactory. getTypeValidator(Map<String,Object> schema)
Returns a validator validating the schema.static Validator
ObjectValidatorFactory. getTypeValidator(Map<String,Object> schema, List<String> jsonPointer)
Returns a validator validating the schema. -
Uses of Validator in org.forgerock.json.schema.validator.validators
Subclasses of Validator in org.forgerock.json.schema.validator.validators 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.Methods in org.forgerock.json.schema.validator.validators with parameters of type Validator Modifier and Type Method Description void
ReferenceTypeValidator. setReferencedValidator(Validator validator)
Sets the validator being referenced by this object.Method parameters in org.forgerock.json.schema.validator.validators with type arguments of type Validator Modifier and Type Method Description protected void
ArrayTypeValidator. collectAllValidators(Collection<Validator> results)
Collects all the sub-validators held in this validator and aggregates them in the passed in Collection.protected void
ObjectTypeValidator. collectAllValidators(Collection<Validator> results)
Collects all the sub-validators held in this validator and aggregates them in the passed in Collection.protected void
Validator. collectAllValidators(Collection<Validator> results)
Collects all the sub-validators held in this validator and aggregates them in the passed in Collection.protected static void
Validator. collectAllValidators(Collection<Validator> results, Collection<? extends Validator> col)
Collects all the sub-validators held in this validator and aggregates them in the passed in Collection.protected static void
Validator. collectAllValidators(Collection<Validator> results, Map<?,? extends Validator> map)
Collects all the sub-validators held in this validator and aggregates them in the passed in Collection.protected static void
Validator. collectAllValidators(Collection<Validator> results, Map<?,? extends Validator> map)
Collects all the sub-validators held in this validator and aggregates them in the passed in Collection.
-