public static enum VPTree.VPSelection extends Enum<VPTree.VPSelection>
Enum Constant and Description |
---|
Random
Randomly selects a new point to be the Vantage Point
|
Sampling
Uses the sampling method described in the original paper
|
Modifier and Type | Method and Description |
---|---|
static VPTree.VPSelection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VPTree.VPSelection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VPTree.VPSelection Sampling
public static final VPTree.VPSelection Random
public static VPTree.VPSelection[] values()
for (VPTree.VPSelection c : VPTree.VPSelection.values()) System.out.println(c);
public static VPTree.VPSelection 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.