Package com.solibri.smc.api.util
Interface Pair<A,B>
-
- Type Parameters:
A
- type of the first componentB
- type of the second component
public interface Pair<A,B>
A Generic pair.- Since:
- 9.12.0
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static <F,S>
Pair<F,S>create(F first, S second)
A
getFirst()
Get the first component.B
getSecond()
Get the second component.
-