public static enum KDTree.PivotSelection extends Enum<KDTree.PivotSelection>
Enum Constant and Description |
---|
Incremental
The next pivot will be selected by iteratively going through each possible pivot.
|
Variance
The next pivot will be selected by determining which pivot index contains the most variance.
|
Modifier and Type | Method and Description |
---|---|
static KDTree.PivotSelection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KDTree.PivotSelection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KDTree.PivotSelection Incremental
public static final KDTree.PivotSelection Variance
public static KDTree.PivotSelection[] values()
for (KDTree.PivotSelection c : KDTree.PivotSelection.values()) System.out.println(c);
public static KDTree.PivotSelection valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.