hydra.ext.io.shex.syntax.InlineShapeExpression 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 InlineShapeExpression implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/io/shex/syntax.InlineShapeExpression");
public static final hydra.core.Name FIELD_NAME_VALUE = new hydra.core.Name("value");
public final hydra.ext.io.shex.syntax.InlineShapeOr value;
public InlineShapeExpression (hydra.ext.io.shex.syntax.InlineShapeOr value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof InlineShapeExpression)) {
return false;
}
InlineShapeExpression o = (InlineShapeExpression) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
}