util.classificationFeatures
Enum ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES

java.lang.Object
  extended by java.lang.Enum<ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES>
      extended by util.classificationFeatures.ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES>
Enclosing class:
ClassificationFeatureUtils

public static enum ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES
extends java.lang.Enum<ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES>


Enum Constant Summary
BRANCH_POINT
           
COMPOSITIONAL
           
COMPOSITIONAL_GENERAL
           
GC
           
NEAREST_EQUAL
           
NONBINDING
           
NUC_DISTANCE
           
POSITIONAL
           
POSITIONAL_GENERAL
           
READING_FRAME
           
SEC_COMPOSITIONAL
           
SEC_NEAR
           
SEC_POSITIONAL
           
TETRAHEDRON
           
WAVECONTENT
           
 
Method Summary
static ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES[] 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

POSITIONAL

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES POSITIONAL

COMPOSITIONAL

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES COMPOSITIONAL

NEAREST_EQUAL

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES NEAREST_EQUAL

READING_FRAME

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES READING_FRAME

BRANCH_POINT

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES BRANCH_POINT

SEC_POSITIONAL

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES SEC_POSITIONAL

SEC_COMPOSITIONAL

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES SEC_COMPOSITIONAL

SEC_NEAR

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES SEC_NEAR

POSITIONAL_GENERAL

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES POSITIONAL_GENERAL

COMPOSITIONAL_GENERAL

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES COMPOSITIONAL_GENERAL

NONBINDING

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES NONBINDING

GC

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES GC

NUC_DISTANCE

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES NUC_DISTANCE

TETRAHEDRON

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES TETRAHEDRON

WAVECONTENT

public static final ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES WAVECONTENT
Method Detail

values

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

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

valueOf

public static ClassificationFeatureUtils.CLASSIFICATIONFEATURE_TYPES 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