@Beta public static enum HierarchicClustering.Alignment extends Enum<HierarchicClustering.Alignment>
Enum Constant and Description |
---|
LEAF_ALIGNED
Leaves are aligned to level 0, level increases towards roots.
|
ROOT_ALIGNED
Roots are aligned to level 0, level increases towards leaves.
|
Modifier and Type | Method and Description |
---|---|
static HierarchicClustering.Alignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HierarchicClustering.Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HierarchicClustering.Alignment ROOT_ALIGNED
public static final HierarchicClustering.Alignment LEAF_ALIGNED
public static HierarchicClustering.Alignment[] values()
for (HierarchicClustering.Alignment c : HierarchicClustering.Alignment.values()) System.out.println(c);
public static HierarchicClustering.Alignment 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 null