public enum GtmSeed extends Enum<GtmSeed>
| Enum Constant and Description |
|---|
CUSTOM
Medium noising
|
DEFAULT
Weak noising
|
| Modifier and Type | Method and Description |
|---|---|
static GtmSeed |
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 GtmSeed |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GtmSeed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GtmSeed DEFAULT
public static final GtmSeed CUSTOM
public static GtmSeed[] values()
for (GtmSeed c : GtmSeed.values()) System.out.println(c);
public static GtmSeed 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 GtmSeed getEnum(int index)
index - index of the enumeratepublic static int[] getIndexes()
public static String[] getLabels()
Copyright © 2022. All rights reserved.