Home | History | Annotate | Download | only in collect

Lines Matching refs:IntHolder

547   private static class IntHolder implements Serializable {
550 public IntHolder(int value) {
555 return (o instanceof IntHolder) && ((IntHolder) o).value == value;
566 IntHolder holderA = new IntHolder(1);
567 IntHolder holderB = new IntHolder(2);
568 Map<String, IntHolder> map = ImmutableMap.of("a", holderA, "b", holderB);
571 Maps.immutableEntry("a", new IntHolder(3))));