public enum ModelClass extends Enum<ModelClass>
Enum Constant and Description |
---|
centerBased |
distributionBased |
Modifier and Type | Method and Description |
---|---|
static ModelClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelClass centerBased
public static final ModelClass distributionBased
public static ModelClass[] values()
for (ModelClass c : ModelClass.values()) System.out.println(c);
public static ModelClass 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 nullCopyright © 2016 Actian Corporation. All rights reserved.