public enum HadoopAlgorithm extends java.lang.Enum<HadoopAlgorithm>
| Enum Constant and Description |
|---|
ALPHA_MINER |
FLEXIBLE_HEURISTICS_MINER |
HybridM_MINER |
INDUCTIVE_MINER |
USER_DEFINED_ALGORITHM |
| Modifier and Type | Method and Description |
|---|---|
static HadoopAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HadoopAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HadoopAlgorithm ALPHA_MINER
public static final HadoopAlgorithm FLEXIBLE_HEURISTICS_MINER
public static final HadoopAlgorithm INDUCTIVE_MINER
public static final HadoopAlgorithm HybridM_MINER
public static final HadoopAlgorithm USER_DEFINED_ALGORITHM
public static HadoopAlgorithm[] values()
for (HadoopAlgorithm c : HadoopAlgorithm.values()) System.out.println(c);
public static HadoopAlgorithm 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