statistics
Enum Initialization.DensityRankingMethod

java.lang.Object
  extended by java.lang.Enum<Initialization.DensityRankingMethod>
      extended by statistics.Initialization.DensityRankingMethod
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Initialization.DensityRankingMethod>
Enclosing class:
Initialization

public static enum Initialization.DensityRankingMethod
extends java.lang.Enum<Initialization.DensityRankingMethod>


Enum Constant Summary
AD_STATISTIC
          Compare by Anderson-Darling statistics
COVARIANCE
          sum of the (absolute) covariance values -- fastest
EV
          compare the largest EV only
EV_DIFFERENCE
          compare (largest EV - smallest EV)
SUM_EIGENVALUE
          sum of the eigen values of the covariance matrix
 
Method Summary
static Initialization.DensityRankingMethod valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Initialization.DensityRankingMethod[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AD_STATISTIC

public static final Initialization.DensityRankingMethod AD_STATISTIC
Compare by Anderson-Darling statistics


COVARIANCE

public static final Initialization.DensityRankingMethod COVARIANCE
sum of the (absolute) covariance values -- fastest


EV

public static final Initialization.DensityRankingMethod EV
compare the largest EV only


EV_DIFFERENCE

public static final Initialization.DensityRankingMethod EV_DIFFERENCE
compare (largest EV - smallest EV)


SUM_EIGENVALUE

public static final Initialization.DensityRankingMethod SUM_EIGENVALUE
sum of the eigen values of the covariance matrix

Method Detail

valueOf

public static Initialization.DensityRankingMethod valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

values

public static Initialization.DensityRankingMethod[] 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 (Initialization.DensityRankingMethod c : Initialization.DensityRankingMethod.values())
    System.out.println(c);

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