hydra.ext.io.shex.syntax.ShapeOr 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.io.shex.syntax;
import java.io.Serializable;
public class ShapeOr implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/io/shex/syntax.ShapeOr");
public static final hydra.core.Name FIELD_NAME_SHAPE_AND = new hydra.core.Name("shapeAnd");
public static final hydra.core.Name FIELD_NAME_LIST_OF_SEQUENCE = new hydra.core.Name("listOfSequence");
public final hydra.ext.io.shex.syntax.ShapeAnd shapeAnd;
public final java.util.List listOfSequence;
public ShapeOr (hydra.ext.io.shex.syntax.ShapeAnd shapeAnd, java.util.List listOfSequence) {
java.util.Objects.requireNonNull((shapeAnd));
java.util.Objects.requireNonNull((listOfSequence));
this.shapeAnd = shapeAnd;
this.listOfSequence = listOfSequence;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof ShapeOr)) {
return false;
}
ShapeOr o = (ShapeOr) (other);
return shapeAnd.equals(o.shapeAnd) && listOfSequence.equals(o.listOfSequence);
}
@Override
public int hashCode() {
return 2 * shapeAnd.hashCode() + 3 * listOfSequence.hashCode();
}
public ShapeOr withShapeAnd(hydra.ext.io.shex.syntax.ShapeAnd shapeAnd) {
java.util.Objects.requireNonNull((shapeAnd));
return new ShapeOr(shapeAnd, listOfSequence);
}
public ShapeOr withListOfSequence(java.util.List listOfSequence) {
java.util.Objects.requireNonNull((listOfSequence));
return new ShapeOr(shapeAnd, listOfSequence);
}
}