|
Gridarta Editor
|
Stores a pair of values. More...
Collaboration diagram for net.sf.gridarta.utils.Pair< T, U >:Public Member Functions | |
| T | getFirst () |
| Returns the first value. More... | |
| U | getSecond () |
| Returns the second value. More... | |
| Pair (final T first, final U second) | |
| Creates a new instance. More... | |
Private Attributes | |
| final T | first |
| The first value. More... | |
| final U | second |
| The second value. More... | |
| net.sf.gridarta.utils.Pair< T, U >.Pair | ( | final T | first, |
| final U | second | ||
| ) |
Creates a new instance.
| first | the first value |
| second | the second value |
Definition at line 43 of file Pair.java.
References net.sf.gridarta.utils.Pair< T, U >.first, and net.sf.gridarta.utils.Pair< T, U >.second.
| T net.sf.gridarta.utils.Pair< T, U >.getFirst | ( | ) |
Returns the first value.
Definition at line 52 of file Pair.java.
References net.sf.gridarta.utils.Pair< T, U >.first.
| U net.sf.gridarta.utils.Pair< T, U >.getSecond | ( | ) |
Returns the second value.
Definition at line 60 of file Pair.java.
References net.sf.gridarta.utils.Pair< T, U >.second.
|
private |
The first value.
Definition at line 31 of file Pair.java.
Referenced by net.sf.gridarta.utils.Pair< T, U >.getFirst(), and net.sf.gridarta.utils.Pair< T, U >.Pair().
|
private |
The second value.
Definition at line 36 of file Pair.java.
Referenced by net.sf.gridarta.utils.Pair< T, U >.getSecond(), and net.sf.gridarta.utils.Pair< T, U >.Pair().