Package oshi.util.tuples
Class Quintet<A,B,C,D,E>
- java.lang.Object
-
- oshi.util.tuples.Quintet<A,B,C,D,E>
-
- Type Parameters:
A- Type of the first elementB- Type of the second elementC- Type of the third elementD- Type of the fourth elementE- Type of the fifth element
@ThreadSafe public class Quintet<A,B,C,D,E> 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.DgetD()Returns the fourth stored object.EgetE()Returns the fifth stored object.
-
-
-
Method Detail
-
getA
public final A getA()
Returns the first stored object.- Returns:
- first object stored
-
getB
public final B getB()
Returns the second stored object.- Returns:
- second object stored
-
getC
public final C getC()
Returns the third stored object.- Returns:
- third object stored
-
getD
public final D getD()
Returns the fourth stored object.- Returns:
- fourth object stored
-
getE
public final E getE()
Returns the fifth stored object.- Returns:
- fifth object stored
-
-