Guava Table介面


Table代表一個特殊的對映,其中兩個鍵可以在組合的方式被指定為單個值。它類似於建立對映的對映。

介面宣告

以下是 com.google.common.collect.Table<R,C,V> 介面的宣告:

@GwtCompatible
public interface Table<R,C,V>

介面方法

S.N. 方法 & 描述
1 Set<Table.Cell<R,C,V>> cellSet()
返回集合中的所有行鍵/列鍵/值三元組。
2 void clear()
從表中刪除所有對映。
3 Map<R,V> column(C columnKey)
返回在給定列鍵的所有對映的檢視。
4 Set<C> columnKeySet()
返回一組具有表中的一個或多個值的列鍵。
5 Map<C,Map<R,V>> columnMap()
返回關聯的每一列鍵與行鍵對應的對映值的檢視。
6 boolean contains(Object rowKey, Object columnKey)
返回true,如果表中包含與指定的行和列鍵的對映。
7 boolean containsColumn(Object columnKey)
返回true,如果表中包含與指定列的對映。
8 boolean containsRow(Object rowKey)
返回true,如果表中包含與指定的行鍵的對映關係。
9 boolean containsValue(Object value)
返回true,如果表中包含具有指定值的對映。
10 boolean equals(Object obj)
比較指定物件與此表是否相等。
11 V get(Object rowKey, Object columnKey)
返回對應於給定的行和列鍵,如果沒有這樣的對映存在值,返回null。
12 int hashCode()
返回此表中的雜湊碼。
13 boolean isEmpty()
返回true,如果表中沒有對映。
14 V put(R rowKey, C columnKey, V value)
關聯指定值與指定鍵。
15 void putAll(Table<? extends R,? extends C,? extends V> table)
複製從指定的表中的所有對映到這個表。
16 V remove(Object rowKey, Object columnKey)
如果有的話,使用給定鍵相關聯刪除的對映
17 Map<C,V> row(R rowKey)
返回包含給定行鍵的所有對映的檢視。
18 Set<R> rowKeySet()
返回一組行鍵具有在表中的一個或多個值。
19 Map<R,Map<C,V>> rowMap()
返回關聯的每一行按鍵與鍵列對應的對映值的檢視。
20 int size()
返回行鍵/列鍵/表中的值對映關係的數量。
21 Collection<V> values()
返回所有值,其中可能包含重複的集合。

Table 例子

選擇使用任何編輯器建立以下java程式在 C:/> Guava

GuavaTester.java
import java.util.Map;
import java.util.Set;

import com.google.common.collect.HashBasedTable;
import com.google.common.collect.Table;

public class GuavaTester {

   public static void main(String args[]){
      //Table<R,C,V> == Map<R,Map<C,V>>
      /*
      *  Company: IBM, Microsoft, TCS
      *  IBM 		-> {101:Mahesh, 102:Ramesh, 103:Suresh}
      *  Microsoft 	-> {101:Sohan, 102:Mohan, 103:Rohan } 
      *  TCS 		-> {101:Ram, 102: Shyam, 103: Sunil } 
      * 
      * */
      //create a table
      Table<String, String, String> employeeTable = HashBasedTable.create();

      //initialize the table with employee details
      employeeTable.put("IBM", "101","Mahesh");
      employeeTable.put("IBM", "102","Ramesh");
      employeeTable.put("IBM", "103","Suresh");

      employeeTable.put("Microsoft", "111","Sohan");
      employeeTable.put("Microsoft", "112","Mohan");
      employeeTable.put("Microsoft", "113","Rohan");

      employeeTable.put("TCS", "121","Ram");
      employeeTable.put("TCS", "122","Shyam");
      employeeTable.put("TCS", "123","Sunil");

      //get Map corresponding to IBM
      Map<String,String> ibmEmployees =  employeeTable.row("IBM");

      System.out.println("List of IBM Employees");
      for(Map.Entry<String, String> entry : ibmEmployees.entrySet()){
         System.out.println("Emp Id: " + entry.getKey() + ", Name: " + entry.getValue());
      }

      //get all the unique keys of the table
      Set<String> employers = employeeTable.rowKeySet();
      System.out.print("Employers: ");
      for(String employer: employers){
         System.out.print(employer + " ");
      }
      System.out.println();

      //get a Map corresponding to 102
      Map<String,String> EmployerMap =  employeeTable.column("102");
      for(Map.Entry<String, String> entry : EmployerMap.entrySet()){
         System.out.println("Employer: " + entry.getKey() + ", Name: " + entry.getValue());
      }		
   }	
}

驗證結果

使用javac編譯器編譯如下類

C:\Guava>javac GuavaTester.java

現在執行GuavaTester看到的結果

C:\Guava>java GuavaTester

看到結果。

List of IBM Employees
Emp Id: 102, Name: Ramesh
Emp Id: 101, Name: Mahesh
Emp Id: 103, Name: Suresh
Employers: IBM TCS Microsoft 
Employer: IBM, Name: Ramesh