Verwendungen von Klasse
de.s42.base.functional.Pair
Packages, die Pair verwenden
- 
Verwendungen von Pair in de.s42.base.functionalMethoden in de.s42.base.functional, die Pair zurückgebenModifizierer und TypMethodeBeschreibungstatic <FirstType,SecondType> 
 Pair<FirstType, SecondType> Pair.empty()Create an empty Pair with both of the given values being null.static <FirstType,SecondType> 
 Pair<FirstType, SecondType> Pair.of(FirstType first, SecondType second) Create a Pair with both of the given values being non null.static <FirstType,SecondType> 
 Pair<FirstType, SecondType> Pair.ofFirst(FirstType first) Create a Pair with first set and second being nullstatic <FirstType,SecondType> 
 Pair<FirstType, SecondType> Pair.ofNullable(FirstType first, SecondType second) Create a Pair with both of the given values being null or non null.static <FirstType,SecondType> 
 Pair<FirstType, SecondType> Pair.ofSecond(SecondType second) Create a Pair with second set and first being null