public enum UploadVariant extends Enum<UploadVariant>
Enum Constant and Description |
---|
APPLET
Upload via Applet.
|
DRAG_AND_DROP_ON_FOLDERS
Drag a document onto a navigation folder for uploading it.
|
HTML5_UPLOAD_AREA
HTML5 Area Upload mechanism.
|
NONE
No Upload available.
|
RIGHT_MOUSECLICK_ON_FOLDER
Upload via right mouseclick on a folder (context menu).
|
Modifier and Type | Field and Description |
---|---|
boolean |
isAvailableForIE
Is the upload variant available for Internet explorer.
|
Modifier and Type | Method and Description |
---|---|
static UploadVariant |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UploadVariant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UploadVariant NONE
public static final UploadVariant HTML5_UPLOAD_AREA
public static final UploadVariant APPLET
public static final UploadVariant RIGHT_MOUSECLICK_ON_FOLDER
public static final UploadVariant DRAG_AND_DROP_ON_FOLDERS
public boolean isAvailableForIE
public static UploadVariant[] values()
for (UploadVariant c : UploadVariant.values()) System.out.println(c);
public static UploadVariant 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 Hyland Software Germany GmbH. All rights reserved.