edu.udo.cs.yale.operator.parameter
Class Parameters

java.lang.Object
  extended by edu.udo.cs.yale.operator.parameter.Parameters

public class Parameters
extends java.lang.Object

This class is a collection of the parameter values of a single operator. Instances of Parameters are created with respect to the declared list of ParameterTypes of an operator. If parameters are set using the setParameter() method and the value exceeds the range, it is automatically corrected. If parameters are queried that are not set, their default value is returned.

Version:
$Id: Parameters.java,v 2.26 2006/09/25 14:28:49 ingomierswa Exp $
Author:
Ingo Mierswa, Simon Fischer

Field Summary
private  java.util.SortedMap<java.lang.String,ParameterType> keyToTypeMap
          Maps parameter keys (i.e.
private  java.util.SortedMap<java.lang.String,java.lang.Object> keyToValueMap
          Maps parameter keys (i.e.
 
Constructor Summary
Parameters()
          Creates an empty parameters object without any parameter types.
Parameters(java.util.List<ParameterType> parameterTypes)
          Constructs an instance of Parameters for the given list of ParameterTypes.
 
Method Summary
 java.lang.Object clone()
          Performs a deep clone on this parameters object.
 void copy(Parameters parameters)
          Copies the values and types of the given Parameters object into this one.
 boolean equals(java.lang.Object o)
          Returns true if the given parameters are not null and are the same like this parameters.
 java.util.Set<java.lang.String> getKeys()
          Returns a set view of all parameter keys.
 java.lang.Object getParameter(java.lang.String key)
          Returns the value of the given parameter.
 ParameterType getParameterType(java.lang.String key)
          Returns the type of the parameter with the given type.
 java.lang.String getXML(java.lang.String indent)
          Writes a portion of the xml configuration file specifying the parameters that differ from their default value.
 void setParameter(java.lang.String key, java.lang.Object value)
          Sets the parameter for the given key after performing a range-check.
 void setParameterWithoutCheck(java.lang.String key, java.lang.Object value)
          Sets the parameter without performing a range check.
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

keyToValueMap

private java.util.SortedMap<java.lang.String,java.lang.Object> keyToValueMap
Maps parameter keys (i.e. Strings) to their value (Objects).


keyToTypeMap

private java.util.SortedMap<java.lang.String,ParameterType> keyToTypeMap
Maps parameter keys (i.e. Strings) to their ParameterType.

Constructor Detail

Parameters

public Parameters()
Creates an empty parameters object without any parameter types.


Parameters

public Parameters(java.util.List<ParameterType> parameterTypes)
Constructs an instance of Parameters for the given list of ParameterTypes. The list might be empty but not null.

Method Detail

copy

public void copy(Parameters parameters)
Copies the values and types of the given Parameters object into this one. Performs a check if both objects contain the same ParameterTypes. Especially all parameter types of this object must also be defined in the given Parameters instance. If a parameter type is missing a NullPointerException will be thrown.


clone

public java.lang.Object clone()
Performs a deep clone on this parameters object.

Overrides:
clone in class java.lang.Object


getParameterType

public ParameterType getParameterType(java.lang.String key)
Returns the type of the parameter with the given type.


setParameter

public void setParameter(java.lang.String key,
                         java.lang.Object value)
Sets the parameter for the given key after performing a range-check.


setParameterWithoutCheck

public void setParameterWithoutCheck(java.lang.String key,
                                     java.lang.Object value)
Sets the parameter without performing a range check.


getParameter

public java.lang.Object getParameter(java.lang.String key)
                              throws UndefinedParameterError
Returns the value of the given parameter. If it was not yet set, the default value is set now and a log message is issued. If the ParameterType does not provide a default value, this may result in an error message. In subsequent calls of this method, the parameter will be set. An OperatorException (UserError) will be thrown if a non-optional parameter was not set.

Throws:
UndefinedParameterError


getKeys

public java.util.Set<java.lang.String> getKeys()
Returns a set view of all parameter keys.


equals

public boolean equals(java.lang.Object o)
Returns true if the given parameters are not null and are the same like this parameters.

Overrides:
equals in class java.lang.Object


getXML

public java.lang.String getXML(java.lang.String indent)
Writes a portion of the xml configuration file specifying the parameters that differ from their default value.



Copyright © 2001-2006