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

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


    public IntegerSchema integerSchema() {
        return new IntegerSchema();
    }

    public NullSchema nullSchema() {
        return new NullSchema();
    }
View Full Code Here


public class TestEquals extends SchemaTestBase {
 
  public void testEquals() throws Exception {
    ObjectSchema schema1 = new ObjectSchema();
    ObjectSchema schema2 = new ObjectSchema();
    schema2.getProperties().put("property1", new NullSchema());
   
    assertTrue(!schema1.equals(schema2));
  }
View Full Code Here

    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.NullSchema

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.