Home | History | Annotate | Download | only in collect

Lines Matching refs:Character

35       Table<String, Integer, Character> table, Object... data) {
39 (String) data[i], (Integer) data[i+1], (Character) data[i+2]);
69 assertEquals((Character) 'a', table.put("foo", 1, 'd'));
70 assertEquals((Character) 'd', table.get("foo", 1));
71 assertEquals((Character) 'b', table.get("bar", 1));
73 assertEquals((Character) 'd', table.put("foo", 1, 'd'));
74 assertEquals((Character) 'd', table.get("foo", 1));
106 assertEquals((Character) 'b', table.put("bar", 1, null));
118 Table<String, Integer, Character> other = HashBasedTable.create();
123 assertEquals((Character) 'd', table.get("foo", 1));
124 assertEquals((Character) 'b', table.get("bar", 1));
125 assertEquals((Character) 'c', table.get("foo", 3));
126 assertEquals((Character) 'e', table.get("bar", 2));
127 assertEquals((Character) 'f', table.get("cat", 2));
137 assertEquals((Character) 'c', table.remove("foo", 3));
139 assertEquals((Character) 'a', table.get("foo", 1));
140 assertEquals((Character) 'b', table.get("bar", 1));
151 assertEquals((Character) 'c', table.get("foo", 3));
158 Map<Integer, Character> row = table.row("foo");