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 AgetA()Returns the first stored object.BgetB()Returns the second stored object.CgetC()Returns the third stored object.
-