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