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

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


    public ObjectSchema objectSchema() {
        return new ObjectSchema();
    }

    public StringSchema stringSchema() {
        return new StringSchema();
    }
View Full Code Here


    case INTEGER:
      return new IntegerSchema();
    case NUMBER:
      return new NumberSchema();
    case STRING:
      return new StringSchema();
    case NULL:
      return new NullSchema();

    default:
      return new AnySchema();
View Full Code Here

TOP

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

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.