
org.everit.json.schema.NullSchema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.everit.json.schema Show documentation
Show all versions of org.everit.json.schema Show documentation
This is a fork of the implementation of the JSON Schema Core Draft v4 specification built with the org.json API which also supports internationalization
The newest version!
package org.everit.json.schema;
import org.everit.json.schema.internal.JSONPrinter;
/**
* {@code Null} schema validator.
*/
public class NullSchema extends Schema {
/**
* Builder class for {@link NullSchema}.
*/
public static class Builder extends Schema.Builder {
@Override
public NullSchema build() {
return new NullSchema(this);
}
}
public static final NullSchema INSTANCE = new NullSchema(builder());
public static Builder builder() {
return new Builder();
}
public NullSchema(final Builder builder) {
super(builder);
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o instanceof NullSchema) {
NullSchema that = (NullSchema) o;
return that.canEqual(this) && super.equals(that);
} else {
return false;
}
}
@Override
public int hashCode() {
return super.hashCode();
}
@Override
protected boolean canEqual(Object other) {
return other instanceof NullSchema;
}
@Override void accept(Visitor visitor) {
visitor.visitNullSchema(this);
}
@Override
void describePropertiesTo(JSONPrinter writer) {
writer.key("type");
writer.value("null");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy