public static enum ExpertPrefsDlg.NumberOption extends java.lang.Enum<ExpertPrefsDlg.NumberOption>
Each option is a couple where
| Enum Constant and Description |
|---|
K100 |
K200 |
K300 |
K400 |
K500 |
UNLIMITED |
| Modifier and Type | Method and Description |
|---|---|
static ExpertPrefsDlg.NumberOption |
fromInt(int val)
Return the
TimeOption having the parameter
as value; |
java.lang.String |
toString() |
static ExpertPrefsDlg.NumberOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpertPrefsDlg.NumberOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpertPrefsDlg.NumberOption UNLIMITED
public static final ExpertPrefsDlg.NumberOption K100
public static final ExpertPrefsDlg.NumberOption K200
public static final ExpertPrefsDlg.NumberOption K300
public static final ExpertPrefsDlg.NumberOption K400
public static final ExpertPrefsDlg.NumberOption K500
public static ExpertPrefsDlg.NumberOption[] values()
for (ExpertPrefsDlg.NumberOption c : ExpertPrefsDlg.NumberOption.values()) System.out.println(c);
public static ExpertPrefsDlg.NumberOption 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<ExpertPrefsDlg.NumberOption>public static ExpertPrefsDlg.NumberOption fromInt(int val)
TimeOption having the parameter
as value;val - The value to get the TimeOption fromTimeOption having the parameter as value or
null if there is no TimeOption
having the parameter as value