Record Class Right<L,R>

java.lang.Object
java.lang.Record
info.jab.util.either.Right<L,R>
Type Parameters:
L - the type of the Left value
R - the type of the Right value
Record Components:
value - the value
All Implemented Interfaces:
Either<L,R>

public record Right<L,R>(@Nonnull R value) extends Record implements Either<L,R>
A record representing the Right variant of an Either.