public enum MINING_FUNCTION extends Enum<MINING_FUNCTION>
| Enum Constant and Description |
|---|
ASSOCIATION_RULES |
CLASSIFICATION |
CLUSTERING |
MIXED |
REGRESSION |
SEQUENCES |
TIME_SERIES |
| Modifier and Type | Method and Description |
|---|---|
static MINING_FUNCTION |
byName(String name) |
String |
getName() |
static MINING_FUNCTION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MINING_FUNCTION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MINING_FUNCTION ASSOCIATION_RULES
public static final MINING_FUNCTION SEQUENCES
public static final MINING_FUNCTION CLASSIFICATION
public static final MINING_FUNCTION REGRESSION
public static final MINING_FUNCTION CLUSTERING
public static final MINING_FUNCTION TIME_SERIES
public static final MINING_FUNCTION MIXED
public static MINING_FUNCTION[] values()
for (MINING_FUNCTION c : MINING_FUNCTION.values()) System.out.println(c);
public static MINING_FUNCTION 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 nullpublic static MINING_FUNCTION byName(String name)
public String getName()
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.