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

com.spun.util.Tuple Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package com.spun.util;

public class Tuple
{
  private final H first;
  private final K second;
  public Tuple(H first, K second)
  {
    this.first = first;
    this.second = second;
  }
  public H getFirst()
  {
    return first;
  }
  public K getSecond()
  {
    return second;
  }
  @Override
  public String toString()
  {
    return String.format("<%s,%s>", first, second);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy