io.vulpine.lib.json.schema.v4.SchemaSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-builder Show documentation
Show all versions of json-schema-builder Show documentation
Checked variations for Java 8+ functional interfaces.
package io.vulpine.lib.json.schema.v4;
import io.vulpine.lib.json.schema.SchemaBuilder;
import io.vulpine.lib.json.schema.v4.lib.ChildSchema;
import io.vulpine.lib.json.schema.v4.lib.SchemaNodeArray;
/**
* @since 2.0
*/
public interface SchemaSet
extends
SchemaBuilder,
ChildSchema
,
SchemaNodeArray>
{
// Return type override
@Override
SchemaSet add(SchemaBuilder... vals);
}