Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

de.lmu.ifi.dbs.elki.index.tree.spatial
Enum BulkSplit.Strategy

java.lang.Object
  extended by java.lang.Enum<BulkSplit.Strategy>
      extended by de.lmu.ifi.dbs.elki.index.tree.spatial.BulkSplit.Strategy
All Implemented Interfaces:
Serializable, Comparable<BulkSplit.Strategy>
Enclosing class:
BulkSplit

public static enum BulkSplit.Strategy
extends Enum<BulkSplit.Strategy>

Available strategies for bulk loading.


Enum Constant Summary
MAX_EXTENSION
           
ZCURVE
           
 
Method Summary
static BulkSplit.Strategy valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BulkSplit.Strategy[] 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

ZCURVE

public static final BulkSplit.Strategy ZCURVE

MAX_EXTENSION

public static final BulkSplit.Strategy MAX_EXTENSION
Method Detail

values

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

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

valueOf

public static BulkSplit.Strategy 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.1 (2008-07-10_1838)