public static enum VFSJFileChooser.RETURN_TYPE extends Enum<VFSJFileChooser.RETURN_TYPE>
| Enum Constant and Description |
|---|
APPROVE
Return value if approve (yes, ok) is chosen.
|
CANCEL
Return value if cancel is chosen.
|
ERROR
Return value if an error occured.
|
NO_SELECTION
Return value so users can pre-set a selection value
|
| Modifier and Type | Method and Description |
|---|---|
static VFSJFileChooser.RETURN_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VFSJFileChooser.RETURN_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VFSJFileChooser.RETURN_TYPE CANCEL
public static final VFSJFileChooser.RETURN_TYPE APPROVE
public static final VFSJFileChooser.RETURN_TYPE ERROR
public static final VFSJFileChooser.RETURN_TYPE NO_SELECTION
public static VFSJFileChooser.RETURN_TYPE[] values()
for (VFSJFileChooser.RETURN_TYPE c : VFSJFileChooser.RETURN_TYPE.values()) System.out.println(c);
public static VFSJFileChooser.RETURN_TYPE 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 nullCopyright © 2020. All rights reserved.