
com.github.rahulsom.grooves.queries.internal.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grooves-api Show documentation
Show all versions of grooves-api Show documentation
APIs that help in computation of Grooves based Snapshots
The newest version!
package com.github.rahulsom.grooves.queries.internal;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import org.jetbrains.annotations.NotNull;
/**
* Immutable class that can store two objects.
*
* @param Type of first object
* @param Type of second object
*
* @author Rahul Somasunderam
*/
@RequiredArgsConstructor
@Getter
public class Pair {
@NotNull private final FirstT first;
@NotNull private final SecondT second;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy