Package io.apicurio.multitenant.utils
Class Pair<L,R>
- java.lang.Object
-
- io.apicurio.multitenant.utils.Pair<L,R>
-
public class Pair<L,R> extends Object
Simple pair, tuple, whatever you wanna call it TODO change this for commons-lang3 Pair whenever there are more reasons to add it as a dependency.- Author:
- Fabian Martinez
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description L
getLeft()
R
getRight()
static <L,R>
Pair<L,R>of(L left, R right)
-