Package com.saperion.ngc.upload
Enum UploadVariant
- java.lang.Object
-
- java.lang.Enum<UploadVariant>
-
- com.saperion.ngc.upload.UploadVariant
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UploadVariant>
public enum UploadVariant extends java.lang.Enum<UploadVariant>
Holds the possible variants to upload documents with saperion web client. Each variant has a property that tells you if this upload option is available in a browser of type Internet Explorer.- Author:
- chg
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRAG_AND_DROP_ON_FOLDERS
Drag a document onto a navigation folder for uploading it.NONE
No Upload available.RIGHT_MOUSECLICK_ON_FOLDER
Upload via right mouseclick on a folder (context menu).
-
Field Summary
Fields Modifier and Type Field Description boolean
isAvailableForIE
Is the upload variant available for Internet explorer.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UploadVariant
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
NONE
public static final UploadVariant NONE
No Upload available.
-
RIGHT_MOUSECLICK_ON_FOLDER
public static final UploadVariant RIGHT_MOUSECLICK_ON_FOLDER
Upload via right mouseclick on a folder (context menu).
-
DRAG_AND_DROP_ON_FOLDERS
public static final UploadVariant DRAG_AND_DROP_ON_FOLDERS
Drag a document onto a navigation folder for uploading it. Only available for Firefox.
-
-
Method Detail
-
values
public static UploadVariant[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UploadVariant c : UploadVariant.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UploadVariant valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-