Package oshi.util.tuples
Class Triplet<A,B,C>
- java.lang.Object
-
- oshi.util.tuples.Triplet<A,B,C>
-
- Type Parameters:
A
- Type of the first elementB
- Type of the second elementC
- Type of the third element
@ThreadSafe public class Triplet<A,B,C> extends java.lang.Object
Convenience class for returning multiple objects from methods.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description A
getA()
Returns the first stored object.B
getB()
Returns the second stored object.C
getC()
Returns the third stored object.
-