Package io.vertx.reactivex.json.schema
Class Validator
- java.lang.Object
-
- io.vertx.reactivex.json.schema.Validator
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<Validator>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Validator
create(JsonSchema schema, JsonSchemaOptions options)
Creates a new validator with some initial schema and options.static Validator
create(JsonSchema schema, JsonSchemaOptions options, JsonFormatValidator jsonFormatValidator)
Creates a new validator with some initial schema, options and a custom JSON format validator.boolean
equals(Object o)
Validator
getDelegate()
int
hashCode()
static Validator
newInstance(Validator arg)
String
toString()
OutputUnit
validate(Object instance)
Validate a given input against the initial schema.
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<Validator> __TYPE_ARG
-
-
Method Detail
-
getDelegate
public Validator getDelegate()
-
create
public static Validator create(JsonSchema schema, JsonSchemaOptions options)
Creates a new validator with some initial schema and options.When validation is to be reused, it is recommended to create a
SchemaRepository
instance and use theSchemaRepository.validator(io.vertx.reactivex.json.schema.JsonSchema)
} method. The use of aString
key allows avoiding re-parsing and fast lookups.- Parameters:
schema
- the initial schemaoptions
- the validator options- Returns:
- a validator instance
-
create
public static Validator create(JsonSchema schema, JsonSchemaOptions options, JsonFormatValidator jsonFormatValidator)
Creates a new validator with some initial schema, options and a custom JSON format validator. When validation is to be reused, it is recommended to create aSchemaRepository
instance and use theSchemaRepository.validator(io.vertx.reactivex.json.schema.JsonSchema)
} method. The use of aString
key allows avoiding re-parsing and fast lookups.- Parameters:
schema
- the initial schemaoptions
- the validator optionsjsonFormatValidator
- the custom JSON format validator- Returns:
- a validator instance
-
validate
public OutputUnit validate(Object instance)
Validate a given input against the initial schema.- Parameters:
instance
- instance to validate- Returns:
- returns a output unit object as defined by the options
-
-