de.jstacs.sequenceScores.statisticalModels.trainable.mixture
Enum AbstractMixtureTrainSM.Algorithm

java.lang.Object
  extended by java.lang.Enum<AbstractMixtureTrainSM.Algorithm>
      extended by de.jstacs.sequenceScores.statisticalModels.trainable.mixture.AbstractMixtureTrainSM.Algorithm
All Implemented Interfaces:
Serializable, Comparable<AbstractMixtureTrainSM.Algorithm>
Enclosing class:
AbstractMixtureTrainSM

public static enum AbstractMixtureTrainSM.Algorithm
extends Enum<AbstractMixtureTrainSM.Algorithm>

This enum defines the different types of algorithms that can be used in an AbstractMixtureTrainSM.

Author:
Jens Keilwagen

Enum Constant Summary
EM
          This value indicates that the model should be learned using the expectation maximization.
GIBBS_SAMPLING
          This value indicates that the model should be learned using Gibbs sampling.
 
Method Summary
static AbstractMixtureTrainSM.Algorithm valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractMixtureTrainSM.Algorithm[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EM

public static final AbstractMixtureTrainSM.Algorithm EM
This value indicates that the model should be learned using the expectation maximization.


GIBBS_SAMPLING

public static final AbstractMixtureTrainSM.Algorithm GIBBS_SAMPLING
This value indicates that the model should be learned using Gibbs sampling.

Method Detail

values

public static AbstractMixtureTrainSM.Algorithm[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AbstractMixtureTrainSM.Algorithm c : AbstractMixtureTrainSM.Algorithm.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AbstractMixtureTrainSM.Algorithm valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null