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

io.codemodder.plugins.maven.operator.Pair Maven / Gradle / Ivy

There is a newer version: 0.97.4
Show newest version
package io.codemodder.plugins.maven.operator;

class Pair {
  private final K first;
  private final V second;

  Pair(K first, V second) {
    this.first = first;
    this.second = second;
  }

  K getFirst() {
    return first;
  }

  V getSecond() {
    return second;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy