Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

de.lmu.ifi.dbs.elki.distance.distancefunction.timeseries
Enum AbstractEditDistanceFunction.Step

java.lang.Object
  extended by java.lang.Enum<AbstractEditDistanceFunction.Step>
      extended by de.lmu.ifi.dbs.elki.distance.distancefunction.timeseries.AbstractEditDistanceFunction.Step
All Implemented Interfaces:
Serializable, Comparable<AbstractEditDistanceFunction.Step>
Enclosing class:
AbstractEditDistanceFunction<V extends NumberVector<V,?>>

protected static enum AbstractEditDistanceFunction.Step
extends Enum<AbstractEditDistanceFunction.Step>


Enum Constant Summary
DEL
           
INS
           
MATCH
           
NONE
           
 
Method Summary
static AbstractEditDistanceFunction.Step valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractEditDistanceFunction.Step[] 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

NONE

public static final AbstractEditDistanceFunction.Step NONE

INS

public static final AbstractEditDistanceFunction.Step INS

DEL

public static final AbstractEditDistanceFunction.Step DEL

MATCH

public static final AbstractEditDistanceFunction.Step MATCH
Method Detail

values

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

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

valueOf

public static AbstractEditDistanceFunction.Step 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

Release 0.2 (2009-07-06_1820)