hydra.ext.org.apache.tinkerpop.gremlin.Configuration 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
// Note: this is an automatically generated file. Do not edit.
package hydra.ext.org.apache.tinkerpop.gremlin;
import java.io.Serializable;
public class Configuration implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/apache/tinkerpop/gremlin.Configuration");
public static final hydra.core.Name FIELD_NAME_KEY = new hydra.core.Name("key");
public static final hydra.core.Name FIELD_NAME_VALUE = new hydra.core.Name("value");
public final hydra.ext.org.apache.tinkerpop.gremlin.KeywordOrIdentifier key;
public final hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgument value;
public Configuration (hydra.ext.org.apache.tinkerpop.gremlin.KeywordOrIdentifier key, hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgument value) {
java.util.Objects.requireNonNull((key));
java.util.Objects.requireNonNull((value));
this.key = key;
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Configuration)) {
return false;
}
Configuration o = (Configuration) (other);
return key.equals(o.key) && value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * key.hashCode() + 3 * value.hashCode();
}
public Configuration withKey(hydra.ext.org.apache.tinkerpop.gremlin.KeywordOrIdentifier key) {
java.util.Objects.requireNonNull((key));
return new Configuration(key, value);
}
public Configuration withValue(hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgument value) {
java.util.Objects.requireNonNull((value));
return new Configuration(key, value);
}
}