public enum GtmBuildingMethods extends Enum<GtmBuildingMethods>
| Enum Constant and Description |
|---|
DIFFERENTIAL
Differential method
|
LEVENBERG_MARQUARDT
Levenberg Marquardt method
|
| Modifier and Type | Method and Description |
|---|---|
static GtmBuildingMethods |
getEnum(int index) |
int |
getIndex() |
static int[] |
getIndexes()
Method to get the table of indexes.
|
String |
getLabel() |
static String[] |
getLabels()
Method to get the table of labels.
|
static GtmBuildingMethods |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GtmBuildingMethods[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GtmBuildingMethods DIFFERENTIAL
public static final GtmBuildingMethods LEVENBERG_MARQUARDT
public static GtmBuildingMethods[] values()
for (GtmBuildingMethods c : GtmBuildingMethods.values()) System.out.println(c);
public static GtmBuildingMethods 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 getIndex()
public String getLabel()
public static GtmBuildingMethods getEnum(int index)
index - index of the enumeratepublic static int[] getIndexes()
public static String[] getLabels()
Copyright © 2022. All rights reserved.