fork download
  1. import com.google.common.collect.ImmutableSetMultimap;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6. var x = ImmutableSetMultimap.of("a", 1, "b", 1, "c", 1);
  7. System.out.println(x.inverse().get(1));
  8. }
  9. }
Success #stdin #stdout 0.2s 56656KB
stdin
Standard input is empty
stdout
[a, b, c]