Class Validator

java.lang.Object
io.vertx.mutiny.json.schema.Validator
All Implemented Interfaces:
MutinyDelegate

public class Validator extends Object implements MutinyDelegate
A validator, validates some input object using a well known schema.

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Field Details

  • Constructor Details

    • Validator

      public Validator(io.vertx.json.schema.Validator delegate)
    • Validator

      public Validator(Object delegate)
  • Method Details

    • getDelegate

      public io.vertx.json.schema.Validator getDelegate()
      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate used by this Mutiny object of generated type
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • create

      public static Validator create(JsonSchema schema, io.vertx.json.schema.JsonSchemaOptions options)
      Parameters:
      schema - the initial schema
      options - the validator options
      Returns:
      a validator instance
    • create

      public static Validator create(JsonSchema schema, io.vertx.json.schema.JsonSchemaOptions options, JsonFormatValidator jsonFormatValidator)
      Parameters:
      schema - the initial schema
      options - the validator options
      jsonFormatValidator - the custom JSON format validator
      Returns:
      a validator instance
    • validate

      public io.vertx.json.schema.OutputUnit validate(Object instance)
      Parameters:
      instance - instance to validate
      Returns:
      returns a output unit object as defined by the options
    • newInstance

      public static Validator newInstance(io.vertx.json.schema.Validator arg)