public enum TaxonomyConfig extends java.lang.Enum<TaxonomyConfig>
| Enum Constant and Description |
|---|
INNER_NODES_ANY |
INNER_NODES_AVERAGE |
INNER_NODES_OPTIMISTIC |
INNER_NODES_PESSIMISTIC |
NO_INNERNODES |
| Modifier and Type | Method and Description |
|---|---|
static TaxonomyConfig |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaxonomyConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaxonomyConfig INNER_NODES_ANY
public static final TaxonomyConfig INNER_NODES_PESSIMISTIC
public static final TaxonomyConfig INNER_NODES_OPTIMISTIC
public static final TaxonomyConfig INNER_NODES_AVERAGE
public static final TaxonomyConfig NO_INNERNODES
public static TaxonomyConfig[] values()
for (TaxonomyConfig c : TaxonomyConfig.values()) System.out.println(c);
public static TaxonomyConfig valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null