Uses of Class
de.jstacs.parameters.Parameter

Packages that use Parameter
de.jstacs.classifier This package provides the framework for any classifier. 
de.jstacs.io Provides classes for reading data from and writing to a file and storing a number of datatypes, including all primitives, arrays of primitives, and Storables to an XML-representation 
de.jstacs.parameters This package provides classes for parameters that establish a general convention for the description of parameters as defined in the Parameter-interface. 
de.jstacs.parameters.validation Provides classes for the validation of Parameter values 
 

Uses of Parameter in de.jstacs.classifier
 

Subclasses of Parameter in de.jstacs.classifier
 class MeasureParameters
          This class holds the parameters for the evaluate-methods of a classifier.
 

Uses of Parameter in de.jstacs.io
 

Methods in de.jstacs.io with parameters of type Parameter
static boolean ParameterSetParser.getBooleanFromParameter(Parameter par)
          Returns the boolean which is the value of the Parameter par.
static byte ParameterSetParser.getByteFromParameter(Parameter par)
          Returns the byte which is the value of the Parameter par.
static double ParameterSetParser.getDoubleFromParameter(Parameter par)
          Returns the double which is the value of the Parameter par.
static float ParameterSetParser.getFloatFromParameter(Parameter par)
          Returns the float which is the value of the Parameter par.
static int ParameterSetParser.getIntFromParameter(Parameter par)
          Returns the int which is the value of the Parameter par.
static long ParameterSetParser.getLongFromParameter(Parameter par)
          Returns the long which is the value of the Parameter par.
static short ParameterSetParser.getShortFromParameter(Parameter par)
          Returns the short which is the value of the Parameter par.
static String ParameterSetParser.getStringFromParameter(Parameter par)
          Returns the String which is the value of the Parameter par.
 

Uses of Parameter in de.jstacs.parameters
 

Subclasses of Parameter in de.jstacs.parameters
 class CollectionParameter
          Class for a collection parameter, i.e. a parameter that provides some collection of possible values the user can choose from.
 class EnumParameter
          This class implements a CollectionParameter based on an Enum.
 class FileParameter
          Class for a Parameter that represents a local file.
 class MultiSelectionCollectionParameter
          Class for a Parameter that provides a collection of possible values.
 class ParameterSetContainer
          Class for a ParameterSetContainer that contains a ParameterSet as value.
 class RangeParameter
          Class for a parameter wrapper that allows SimpleParameters to be set to a set of values.
 class SimpleParameter
          Class for a "simple" parameter.
 

Fields in de.jstacs.parameters declared as Parameter
protected  Parameter SequenceScoringParameterSet.alphabet
          The alphabet the model works on
protected  Parameter SequenceScoringParameterSet.length
          The length of sequences the model can work on or 0 for arbitrary length
 

Methods in de.jstacs.parameters that return Parameter
 Parameter Parameter.clone()
           
 Parameter SequenceScoringParameterSet.getParameterAt(int i)
           
 Parameter ParameterSet.getParameterAt(int i)
          Returns the Parameter at position i.
 Parameter ArrayParameterSet.getParameterAt(int i)
           
 Parameter ParameterSetTagger.getParameterFromTag(String tag)
          This method returns the Parameter specified by the tag
 Parameter SimpleParameter.getRangedInstance()
           
 Parameter Rangeable.getRangedInstance()
          Returns an instance of RangeIterator that has the same properties as the current instance, but accepts a range or list of values.
 Parameter ParameterSetContainer.getRangedInstance()
           
 Parameter CollectionParameter.getRangedInstance()
           
 

Methods in de.jstacs.parameters with parameters of type Parameter
 void ParameterSet.ParameterList.add(int index, Parameter element)
           
 boolean ParameterSet.ParameterList.add(Parameter o)
           
 

Method parameters in de.jstacs.parameters with type arguments of type Parameter
 boolean ParameterSet.ParameterList.addAll(Collection<? extends Parameter> c)
           
 boolean ParameterSet.ParameterList.addAll(int index, Collection<? extends Parameter> c)
           
 String ParameterSetTagger.toString(Comparator<Map.Entry<String,ComparableElement<Parameter,Integer>>> ec)
          This method allows to get a String representation where the tagged parameters are sorted in some specific way.
 

Constructors in de.jstacs.parameters with parameters of type Parameter
ParameterSet(Parameter[] parameters)
          Constructs a ParameterSet out of an array of Parameters.
SimpleParameterSet(Parameter... parameters)
          Creates a new SimpleParameterSet from an array of Parameters.
 

Constructor parameters in de.jstacs.parameters with type arguments of type Parameter
ParameterSet.ParameterList(Collection<? extends Parameter> c)
          Creates a new ParameterSet.ParameterList from an existing Collection of Parameters.
ParameterSet(ArrayList<Parameter> parameters)
          Constructs a ParameterSet out of an ArrayList of Parameters.
 

Uses of Parameter in de.jstacs.parameters.validation
 

Fields in de.jstacs.parameters.validation declared as Parameter
protected  Parameter ReferenceConstraint.constraintParameter
          The reference to the Parameter that is part of the condition.
 

Constructors in de.jstacs.parameters.validation with parameters of type Parameter
ReferenceConstraint(Parameter constraintParameter)
          Creates a new ReferenceConstraint with respect to the Parameter constraintParameter.