I must have missed something obvious, but how do you create a scala-tuple in Java.
I have a scala interface that is implemented in java (for now) and includes the return of a tuple, but how do I implement it?
|
|
|
Use the class http://codemonkeyism.com/tuples-scala-goodness/ explains it well:
|
|||
|
|
|
A tuple is only syntactic sugar for the class Tuple2:
will do the trick in Java.
There are similar Tuple3 ... Tuple22 classes. |
||||
|