public class UnevaluatedItemsValidatorFactory extends Object implements ValidatorFactory
Constructor and Description |
---|
UnevaluatedItemsValidatorFactory() |
Modifier and Type | Method and Description |
---|---|
boolean |
canConsumeSchema(JsonObject schema)
Returns true if this factory can consume the provided schema, eventually returning an instance of
Validator |
Validator |
createValidator(JsonObject schema,
JsonPointer scope,
SchemaParserInternal parser,
MutableStateValidator parent)
This method consume the schema eventually creating a new
Validator . |
public Validator createValidator(JsonObject schema, JsonPointer scope, SchemaParserInternal parser, MutableStateValidator parent) throws SchemaException
ValidatorFactory
Validator
. The schema parser calls it during schema parsing only if ValidatorFactory.canConsumeSchema(JsonObject)
returns true
You can return any of SyncValidator
, AsyncValidator
or MutableStateValidator
createValidator
in interface ValidatorFactory
schema
- JsonObject representing the schemascope
- scope of the parsed schemaparser
- caller parserparent
- parent of this schemaSchemaException
- if the keyword(s) handled by this ValidatorFactory are invalidpublic boolean canConsumeSchema(JsonObject schema)
ValidatorFactory
Validator
canConsumeSchema
in interface ValidatorFactory
Copyright © 2021 Eclipse. All rights reserved.