All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hydra.ext.org.apache.tinkerpop.gremlin.Configuration Maven / Gradle / Ivy

There is a newer version: 0.8.1
Show newest version
// 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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy