jigcell.compare.data
Interface IResultSetGroupMap

All Known Implementing Classes:
ResultSetGroupMap

public interface IResultSetGroupMap

Manages a map of result sets.

This code is licensed under the DARPA BioCOMP Open Source License. See LICENSE for more details.

Author:
Nicholas Allen

Method Summary
 java.util.Map asMap()
          This map of result sets as an untyped map.
 java.lang.Object clone()
           
 java.lang.String get(IResultSetMap results)
          The name associated with a particular result set or null if there is no such mapping.
 java.util.Iterator iterator()
          An iterator over the entries of this map.
 java.util.Set keySet()
          All of the keys in this map.
 java.lang.String put(IResultSetMap results, java.lang.String name)
          Adds a mapping between a result set and a name.
 void putAll(java.util.Map map)
          Adds all the entries from the map to this map.
 

Method Detail

asMap

java.util.Map asMap()
This map of result sets as an untyped map.


clone

java.lang.Object clone()

get

java.lang.String get(IResultSetMap results)
The name associated with a particular result set or null if there is no such mapping.

Parameters:
results - Result set

iterator

java.util.Iterator iterator()
An iterator over the entries of this map.


keySet

java.util.Set keySet()
All of the keys in this map.


put

java.lang.String put(IResultSetMap results,
                     java.lang.String name)
Adds a mapping between a result set and a name.

Parameters:
results - Result set
name - Name

putAll

void putAll(java.util.Map map)
Adds all the entries from the map to this map.

Parameters:
map - Map