public enum LinkageCriterion extends Enum<LinkageCriterion>
| Enum Constant and Description |
|---|
COMPLETE
Complete Link
|
SINGLE
Single Link
|
UPGMA
Unweighted pair group method average
|
UPGMC
unweighted pair group method centroid
|
Ward
Ward's method
|
WPGMA
weighted pair group method average
|
WPGMC
weighted pair group method centroid
|
| Modifier and Type | Method and Description |
|---|---|
static LinkageCriterion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkageCriterion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkageCriterion SINGLE
public static final LinkageCriterion COMPLETE
public static final LinkageCriterion UPGMA
public static final LinkageCriterion WPGMA
public static final LinkageCriterion UPGMC
public static final LinkageCriterion WPGMC
public static final LinkageCriterion Ward
public static LinkageCriterion[] values()
for (LinkageCriterion c : LinkageCriterion.values()) System.out.println(c);
public static LinkageCriterion 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 © 2021. All rights reserved.