All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hydraql.shaded.fastjson2.schema.Any Maven / Gradle / Ivy

The newest version!
package hydraql.shaded.fastjson2.schema;

final class Any
        extends JSONSchema {
    public static final hydraql.shaded.fastjson2.schema.Any INSTANCE = new hydraql.shaded.fastjson2.schema.Any();
    public static final hydraql.shaded.fastjson2.schema.JSONSchema NOT_ANY = new Not(INSTANCE, null, null);

    public Any() {
        super(null, null);
    }

    @Override
    public Type getType() {
        return Type.Any;
    }

    @Override
    public ValidateResult validate(Object value) {
        return SUCCESS;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy