Package oshi.util.tuples
Class Quartet<A,B,C,D>   
java.lang.Object
oshi.util.tuples.Quartet<A,B,C,D>   
- Type Parameters:
- A- Type of the first element
- B- Type of the second element
- C- Type of the third element
- D- Type of the fourth element
Convenience class for returning multiple objects from methods.
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Constructor Details- 
QuartetCreate a quartet and store four objects.- Parameters:
- a- the first object to store
- b- the second object to store
- c- the third object to store
- d- the fourth object to store
 
 
- 
- 
Method Details- 
getAReturns the first stored object.- Returns:
- first object stored
 
- 
getBReturns the second stored object.- Returns:
- second object stored
 
- 
getCReturns the third stored object.- Returns:
- third object stored
 
- 
getDReturns the fourth stored object.- Returns:
- fourth object stored
 
 
-