Package com.fasterxml.jackson.module.jsonSchema.types

Examples of com.fasterxml.jackson.module.jsonSchema.types.BooleanSchema


    public ArraySchema arraySchema() {
        return new ArraySchema();
    }

    public BooleanSchema booleanSchema() {
        return new BooleanSchema();
    }
View Full Code Here


    case ARRAY:
      return new ArraySchema();
    case OBJECT:
      return new ObjectSchema();
    case BOOLEAN:
      return new BooleanSchema();
    case INTEGER:
      return new IntegerSchema();
    case NUMBER:
      return new NumberSchema();
    case STRING:
View Full Code Here

TOP

Related Classes of com.fasterxml.jackson.module.jsonSchema.types.BooleanSchema

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.