public static enum TFileOpenBox.Type extends java.lang.Enum<TFileOpenBox.Type>
Enum Constant and Description |
---|
OPEN
Button will be labeled "Open".
|
SAVE
Button will be labeled "Save".
|
SELECT
Button will be labeled "Select".
|
Modifier and Type | Method and Description |
---|---|
static TFileOpenBox.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TFileOpenBox.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TFileOpenBox.Type OPEN
public static final TFileOpenBox.Type SAVE
public static final TFileOpenBox.Type SELECT
public static TFileOpenBox.Type[] values()
for (TFileOpenBox.Type c : TFileOpenBox.Type.values()) System.out.println(c);
public static TFileOpenBox.Type 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 nullCopyright © 2019 Kevin Lamonte. Licensed MIT.