Record Class Pair<S,T>

java.lang.Object
java.lang.Record
com.thanlinardos.spring_enterprise_library.tuple.Pair<S,T>
Type Parameters:
S - Type of the first thing.
T - Type of the second thing.
Record Components:
first - The first thing.
second - The second thing.

public record Pair<S,T>(S first, T second) extends Record
A tuple of things.