public static enum FileDropTargetListener.DropFlavor extends Enum<FileDropTargetListener.DropFlavor>
FileDropTargetListener can be used in two flavors:
created on: 19.01.2014
| Modifier and Type | Method and Description |
|---|---|
static FileDropTargetListener.DropFlavor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileDropTargetListener.DropFlavor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileDropTargetListener.DropFlavor OPEN
public static final FileDropTargetListener.DropFlavor ADD
public static FileDropTargetListener.DropFlavor[] values()
for (FileDropTargetListener.DropFlavor c : FileDropTargetListener.DropFlavor.values()) System.out.println(c);
public static FileDropTargetListener.DropFlavor 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 © 2019. All rights reserved.