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

org.cloudgraph.common.Pair Maven / Gradle / Ivy

package org.cloudgraph.common;

public class Pair {
  private U left;
  private V right;

  @SuppressWarnings("unused")
  private Pair() {
    super();
  }

  public Pair(U left, V right) {
    super();
    this.left = left;
    this.right = right;
  }

  public U getLeft() {
    return left;
  }

  public V getRight() {
    return right;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy