com.zuunr.json.schema.validation.node.AnyOfIndexNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json Show documentation
Show all versions of json Show documentation
Immutable JSON representation in Java
package com.zuunr.json.schema.validation.node;
import com.zuunr.json.JsonValue;
import com.zuunr.json.schema.JsonSchema;
import com.zuunr.json.schema.validation.ValidationContext;
/**
* @author Niklas Eldberger
*/
public class AnyOfIndexNode extends SubschemaIndexNode {
public AnyOfIndexNode(JsonValue instance, JsonSchema schema, int keywordIndex, ValidationContext validationContext, JsonValue rootInstance, int index) {
super(instance, schema, keywordIndex, validationContext, rootInstance, index);
}
@Override
AnyOfIndexNode create(JsonValue instance, JsonSchema schema, int keywordIndex, ValidationContext validationContext, JsonValue rootInstance, int index) {
return new AnyOfIndexNode(instance, schema, keywordIndex, validationContext, rootInstance, index);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy