org.leadpony.justify.api.BooleanJsonSchema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of justify Show documentation
Show all versions of justify Show documentation
Justify is a JSON validator based on the JSON Schema specification
and the JSON Processing API.
/*
* Copyright 2018-2019 the Justify authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.leadpony.justify.api;
import jakarta.json.JsonValue;
import jakarta.json.JsonValue.ValueType;
/**
* A boolean type of JSON schema.
*
* @author leadpony
*/
abstract class BooleanJsonSchema extends SpecialJsonSchema {
@Override
public boolean isBoolean() {
return true;
}
@Override
public ValueType getJsonValueType() {
return toJson().getValueType();
}
/**
* The boolean JSON schema of {@code true}.
*
* @author leadpony
*/
static class True extends BooleanJsonSchema {
@Override
public Evaluator createEvaluator(EvaluatorContext context, InstanceType type) {
return Evaluator.ALWAYS_TRUE;
}
@Override
public Evaluator createNegatedEvaluator(EvaluatorContext context, InstanceType type) {
return alwaysFalse(context);
}
@Override
public JsonValue toJson() {
return JsonValue.TRUE;
}
@Override
public String toString() {
return "true";
}
}
/**
* The boolean JSON schema of {@code false}.
*
* @author leadpony
*/
static class False extends BooleanJsonSchema {
@Override
public Evaluator createEvaluator(EvaluatorContext context, InstanceType type) {
return alwaysFalse(context);
}
@Override
public Evaluator createNegatedEvaluator(EvaluatorContext context, InstanceType type) {
return Evaluator.ALWAYS_TRUE;
}
@Override
public JsonValue toJson() {
return JsonValue.FALSE;
}
@Override
public String toString() {
return "false";
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy