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 element
- B- Type of the second element
- C- Type of the third element
- D- Type of the fourth element
- E- Type of the fifth element
Convenience class for returning multiple objects from methods.
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Constructor Details- 
QuintetCreate a quintet and store five 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
- e- the fifth 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
 
- 
getEReturns the fifth stored object.- Returns:
- fifth object stored
 
 
-