com.google.common.collect.Table.putAll()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(5.1k)|赞(0)|评价(0)|浏览(389)

本文整理了Java中com.google.common.collect.Table.putAll()方法的一些代码示例,展示了Table.putAll()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.putAll()方法的具体详情如下:
包路径:com.google.common.collect.Table
类名称:Table
方法名:putAll

Table.putAll介绍

[英]Copies all mappings from the specified table to this table. The effect is equivalent to calling #put with each row key / column key / value mapping in table.
[中]将指定表中的所有映射复制到此表。其效果相当于使用表中的每个行键/列键/值映射调用#put。

代码示例

代码示例来源:origin: google/j2objc

  1. @Override
  2. public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. synchronized (mutex) {
  4. delegate().putAll(table);
  5. }
  6. }

代码示例来源:origin: deeplearning4j/nd4j

  1. @Override
  2. public synchronized void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. wrapped.putAll(table);
  4. }

代码示例来源:origin: google/guava

  1. @Override
  2. public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. synchronized (mutex) {
  4. delegate().putAll(table);
  5. }
  6. }

代码示例来源:origin: google/guava

  1. @Override
  2. public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. delegate().putAll(table);
  4. }

代码示例来源:origin: google/guava

  1. @Override
  2. public void putAll(Table<? extends C, ? extends R, ? extends V> table) {
  3. original.putAll(transpose(table));
  4. }

代码示例来源:origin: google/j2objc

  1. @Override
  2. public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. delegate().putAll(table);
  4. }

代码示例来源:origin: google/j2objc

  1. @Override
  2. public void putAll(Table<? extends C, ? extends R, ? extends V> table) {
  3. original.putAll(transpose(table));
  4. }

代码示例来源:origin: google/guava

  1. @Override
  2. public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. assertTrue(Thread.holdsLock(mutex));
  4. delegate.putAll(table);
  5. }

代码示例来源:origin: wildfly/wildfly

  1. @Override
  2. public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. synchronized (mutex) {
  4. delegate().putAll(table);
  5. }
  6. }

代码示例来源:origin: wildfly/wildfly

  1. @Override
  2. public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. delegate().putAll(table);
  4. }

代码示例来源:origin: google/jimfs

  1. private synchronized void putAll(@Nullable Table<String, String, Object> attributes) {
  2. if (attributes != null && this.attributes != attributes) {
  3. if (this.attributes == null) {
  4. this.attributes = HashBasedTable.create();
  5. }
  6. this.attributes.putAll(attributes);
  7. }
  8. }

代码示例来源:origin: wildfly/wildfly

  1. @Override
  2. public void putAll(Table<? extends C, ? extends R, ? extends V> table) {
  3. original.putAll(transpose(table));
  4. }

代码示例来源:origin: google/guava

  1. @Override
  2. <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create(
  3. Table<R, C, V> contents) {
  4. Table<R, C, V> table = TreeBasedTable.create();
  5. table.putAll(contents);
  6. return table;
  7. }
  8. },

代码示例来源:origin: google/guava

  1. public void testPutAllTable() {
  2. table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
  3. Table<String, Integer, Character> other = HashBasedTable.create();
  4. other.put("foo", 1, 'd');
  5. other.put("bar", 2, 'e');
  6. other.put("cat", 2, 'f');
  7. table.putAll(other);
  8. assertEquals((Character) 'd', table.get("foo", 1));
  9. assertEquals((Character) 'b', table.get("bar", 1));
  10. assertEquals((Character) 'c', table.get("foo", 3));
  11. assertEquals((Character) 'e', table.get("bar", 2));
  12. assertEquals((Character) 'f', table.get("cat", 2));
  13. assertSize(5);
  14. }

代码示例来源:origin: google/guava

  1. public final void testPutAll() {
  2. for (Table<Character, Integer, String> testInstance : getTestInstances()) {
  3. try {
  4. testInstance.putAll(ImmutableTable.of('a', 1, "blah"));
  5. fail();
  6. } catch (UnsupportedOperationException e) {
  7. // success
  8. }
  9. }
  10. }

代码示例来源:origin: google/guava

  1. @Override
  2. public void testPutAllTable() {
  3. table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
  4. Table<String, Integer, Character> other = HashBasedTable.create();
  5. other.put("foo", 1, 'd');
  6. other.put("bar", 2, 'e');
  7. other.put("cat", 2, 'f');
  8. try {
  9. table.putAll(other);
  10. fail("Expected UnsupportedOperationException");
  11. } catch (UnsupportedOperationException expected) {
  12. }
  13. assertEquals((Character) 'a', table.get("foo", 1));
  14. assertEquals((Character) 'b', table.get("bar", 1));
  15. assertEquals((Character) 'c', table.get("foo", 3));
  16. assertSize(3);
  17. }

代码示例来源:origin: com.google.jimfs/jimfs

  1. private synchronized void putAll(@Nullable Table<String, String, Object> attributes) {
  2. if (attributes != null && this.attributes != attributes) {
  3. if (this.attributes == null) {
  4. this.attributes = HashBasedTable.create();
  5. }
  6. this.attributes.putAll(attributes);
  7. }
  8. }

代码示例来源:origin: com.github.rinde/rinsim-geom

  1. /**
  2. * Create a new graph with initial data.
  3. * @param table The table that is copied into the graph.
  4. */
  5. public TableGraph(Table<Point, Point, Connection<E>> table) {
  6. data = Tables.newCustomTable(
  7. new LinkedHashMap<Point, Map<Point, Connection<E>>>(),
  8. new LinkedHashMapFactory<Connection<E>>());
  9. data.putAll(table);
  10. }

代码示例来源:origin: com.android.tools/sdklib

  1. private Table<String, String, SymbolEntry> getAllSymbols() {
  2. Table<String, String, SymbolEntry> symbols = HashBasedTable.create();
  3. for (SymbolLoader symbolLoader : mSymbols) {
  4. symbols.putAll(symbolLoader.getSymbols());
  5. }
  6. return symbols;
  7. }

代码示例来源:origin: com.google.guava/guava-tests

  1. @Override
  2. public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
  3. assertTrue(Thread.holdsLock(mutex));
  4. delegate.putAll(table);
  5. }

相关文章