public enum DataMode extends Enum<DataMode>
| Enum Constant and Description |
|---|
CENTROID
The centroid.
|
FITTED
The fitted.
|
PROFILE
The profile.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Gets the value.
|
static DataMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataMode PROFILE
public static final DataMode CENTROID
public static final DataMode FITTED
public static DataMode[] values()
for (DataMode c : DataMode.values()) System.out.println(c);
public static DataMode 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 int getValue()
Copyright © 2019. All rights reserved.