io.apicurio.datamodels.models.union.SchemaSchemaListUnion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicurio-data-models Show documentation
Show all versions of apicurio-data-models Show documentation
Open Source API Design Studio
The newest version!
package io.apicurio.datamodels.models.union;
import io.apicurio.datamodels.models.Schema;
import java.util.List;
public interface SchemaSchemaListUnion extends Union {
public boolean isSchema();
public Schema asSchema();
public boolean isSchemaList();
public List asSchemaList();
}