Tuple

二元组:

Tuple<String, Integer> tuple = Tuple.of("string", 123);
String string = tuple.item1();
Integer integer = tuple.item2();