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

com.github.rahulsom.grooves.queries.internal.Pair Maven / Gradle / Ivy

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