hydra.ext.com.microsoft.azure.dtld.Schema_Complex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hydra-ext Show documentation
Show all versions of hydra-ext Show documentation
Hydra language extensions in Java; models, coders, and utilities
The newest version!
// Note: this is an automatically generated file. Do not edit.
package hydra.ext.com.microsoft.azure.dtld;
import java.io.Serializable;
/**
* Complex schemas are designed for supporting complex data types made up of primitive data types. Currently the following complex schemas are provided: Array, Enum, Map, and Object. A complex schema can be specified directly as the value in a schema statement or described in the interface schemas set and referenced in the schema statement.
*/
public abstract class Schema_Complex implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/com/microsoft/azure/dtld.Schema.Complex");
public static final hydra.core.Name FIELD_NAME_ARRAY = new hydra.core.Name("array");
public static final hydra.core.Name FIELD_NAME_ENUM = new hydra.core.Name("enum");
public static final hydra.core.Name FIELD_NAME_MAP = new hydra.core.Name("map");
public static final hydra.core.Name FIELD_NAME_OBJECT = new hydra.core.Name("object");
private Schema_Complex () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(Array instance) ;
R visit(Enum_ instance) ;
R visit(Map instance) ;
R visit(Object_ instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(Schema_Complex instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(Array instance) {
return otherwise((instance));
}
default R visit(Enum_ instance) {
return otherwise((instance));
}
default R visit(Map instance) {
return otherwise((instance));
}
default R visit(Object_ instance) {
return otherwise((instance));
}
}
public static final class Array extends hydra.ext.com.microsoft.azure.dtld.Schema_Complex implements Serializable {
public final hydra.ext.com.microsoft.azure.dtld.Schema_Array value;
public Array (hydra.ext.com.microsoft.azure.dtld.Schema_Array value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Array)) {
return false;
}
Array o = (Array) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Enum_ extends hydra.ext.com.microsoft.azure.dtld.Schema_Complex implements Serializable {
public final hydra.ext.com.microsoft.azure.dtld.Schema_Enum value;
public Enum_ (hydra.ext.com.microsoft.azure.dtld.Schema_Enum value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Enum_)) {
return false;
}
Enum_ o = (Enum_) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Map extends hydra.ext.com.microsoft.azure.dtld.Schema_Complex implements Serializable {
public final hydra.ext.com.microsoft.azure.dtld.Schema_Map value;
public Map (hydra.ext.com.microsoft.azure.dtld.Schema_Map value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Map)) {
return false;
}
Map o = (Map) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Object_ extends hydra.ext.com.microsoft.azure.dtld.Schema_Complex implements Serializable {
public final hydra.ext.com.microsoft.azure.dtld.Schema_Object value;
public Object_ (hydra.ext.com.microsoft.azure.dtld.Schema_Object value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Object_)) {
return false;
}
Object_ o = (Object_) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}