Uses of Class
de.unidu.is.util.PropertyMap

Packages that use PropertyMap
de.unidu.is.pdatalog Provides classes for an pDatalog++ inference engine. 
de.unidu.is.retrieval Provides a unique interface for interacting an with XML retrieval engines. 
de.unidu.is.retrieval.hyrex Provides classes for interacting with the HyREX XML retrieval engine. 
de.unidu.is.retrieval.pire Provides the PIRE retrieval engine. 
de.unidu.is.util Provides usefuly utility classes. 
 

Uses of PropertyMap in de.unidu.is.pdatalog
 

Fields in de.unidu.is.pdatalog declared as PropertyMap
protected  PropertyMap RelationBase.config
          PDatalog++ configuration.
 

Uses of PropertyMap in de.unidu.is.retrieval
 

Methods in de.unidu.is.retrieval that return PropertyMap
 PropertyMap Query.getMetadata()
          Returns the metadata.
 

Uses of PropertyMap in de.unidu.is.retrieval.hyrex
 

Methods in de.unidu.is.retrieval.hyrex that return PropertyMap
static PropertyMap HyREXSchema.getDefaultOperators()
          Returns the default operators.
 

Uses of PropertyMap in de.unidu.is.retrieval.pire
 

Fields in de.unidu.is.retrieval.pire declared as PropertyMap
protected  PropertyMap PIRE.counts
          Property map with temporary counter for sub-queries.
 

Uses of PropertyMap in de.unidu.is.util
 

Subclasses of PropertyMap in de.unidu.is.util
 class DBKeyPropertyMap
          A special property map backed by a RDBMS table.
 class DBPropertyMap
          A property map backed by a RDBMS table.
 class DelegatedPropertyMap
          This class delegates all calls to another map.
 class FilePropertyMap
          A PropertyMap which can be loaded from and saved into a file.
 class HashPropertyMap
          A property map which is backed by a LinkedHashMap.
 class StreamPropertyMap
          A PropertyMap which can be loaded from and saved into a stream.
 

Fields in de.unidu.is.util declared as PropertyMap
protected  PropertyMap Function.parameters
          Parameters of this function (stored as doubles).
 

Methods in de.unidu.is.util that return PropertyMap
static PropertyMap Config.getMap()
          Returns the complete map.
static PropertyMap FilePropertyMap.getConfiguration()
          Deprecated. Use de.unidu.is.util.Config instead.
 PropertyMap Function.getParameters()
          Returns all parameters.
 

Methods in de.unidu.is.util with parameters of type PropertyMap
static java.lang.String Config.getString(java.lang.Object key, PropertyMap map)
          Retrieves a value as a string from the config specified by its key.
 void Function.setParameters(PropertyMap map)
          Sets the parameters.
 void Function.init(PropertyMap values)
          Initialises the function with the specified values.
 java.lang.String PropertyMap.getString(java.lang.Object key, PropertyMap map)
          Returns the String value of the specified key, using another map from where values can be taken while converting.
 java.lang.String PropertyMap.convertString(java.lang.Object value, PropertyMap map)
          Returns the specified String value, using another map from where values can be taken while converting.
 void PropertyMap.divInt(PropertyMap map)
          Divides each value (as an integer) by the corresponding value in the specified map, for each key occurring in the specified map.
 void PropertyMap.subInt(PropertyMap map)
          Subtracts each value (as an integer) in the specified map from the corresponding value in this map, for each key occurring in the specified map.
 void PropertyMap.multInt(PropertyMap map)
          Multiplies each value (as an integer) in the specified map with the corresponding value in this map, for each key occurring in the specified map.
 void PropertyMap.addInt(PropertyMap map)
          Adds each value (as an integer) in the specified map to the corresponding value in this map, for each key occurring in the specified map.
 void PropertyMap.divDouble(PropertyMap map)
          Divides each value (as a double) by the corresponding value in the specified map, for each key occurring in the specified map.
 void PropertyMap.subDouble(PropertyMap map)
          Subtracts each value (as a double) in the specified map from the corresponding value in this map, for each key occurring in the specified map.
 void PropertyMap.multDouble(PropertyMap map)
          Multiplies each value (as a double) in the specified map with the corresponding value in this map, for each key occurring in the specified map.
 void PropertyMap.multDouble(PropertyMap map, boolean b)
          Multiplies each value (as a double) in the specified map with the corresponding value in this map, for each key occurring in the specified map.
 void PropertyMap.addDouble(PropertyMap map)
          Adds each value (as a double) in the specified map to the corresponding value in this map, for each key occurring in the specified map.
 

Constructors in de.unidu.is.util with parameters of type PropertyMap
DB(PropertyMap map, java.lang.String prefix)
          Creates a new instance, where the parameters are taken from a map.
DB(PropertyMap map, java.lang.String prefix, java.lang.String loggerName)
          Creates a new instance, where the parameters are taken from a map.
DB(PropertyMap map, java.lang.String prefix, org.apache.log4j.Logger logger)
          Creates a new instance, where the parameters are taken from a map.