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