jigcell.compare.data
Interface IResultSetMap

All Superinterfaces:
IDataGeneratorCollection
All Known Implementing Classes:
ResultSetMap

public interface IResultSetMap
extends IDataGeneratorCollection

Manages a map of results.

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

Author:
Nicholas Allen

Nested Class Summary
 
Nested classes/interfaces inherited from interface jigcell.compare.data.IDataGeneratorCollection
IDataGeneratorCollection.Key
 
Method Summary
 IDataElement get(IDataGeneratorCollection.Key key)
          The result associated with a particular key 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.
 IDataElement put(IDataGeneratorCollection.Key key, IDataElement result)
          Adds a mapping between a key and result.
 IDataElement put(IDataGeneratorCollection.Key key, java.lang.String result)
          Adds a mapping between a key and result.
 IDataElement put(java.lang.String name, java.lang.String id, IDataElement result)
          Adds a mapping between a name, id, and result.
 IDataElement put(java.lang.String name, java.lang.String id, java.lang.String result)
          Adds a mapping between a name, id, and result.
 void putAll(java.util.Map map)
          Adds all the entries from the map to this map.
 
Methods inherited from interface jigcell.compare.data.IDataGeneratorCollection
clone
 

Method Detail

get

IDataElement get(IDataGeneratorCollection.Key key)
The result associated with a particular key or null if there is no such mapping.

Parameters:
key - Key

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

IDataElement put(IDataGeneratorCollection.Key key,
                 IDataElement result)
Adds a mapping between a key and result.

Parameters:
key - Key
result - Generator result

put

IDataElement put(IDataGeneratorCollection.Key key,
                 java.lang.String result)
Adds a mapping between a key and result.

Parameters:
key - Key
result - Generator result

put

IDataElement put(java.lang.String name,
                 java.lang.String id,
                 IDataElement result)
Adds a mapping between a name, id, and result.

Parameters:
name - Name
id - Id
result - Generator result

put

IDataElement put(java.lang.String name,
                 java.lang.String id,
                 java.lang.String result)
Adds a mapping between a name, id, and result.

Parameters:
name - Name
id - Id
result - Generator result

putAll

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

Parameters:
map - Map