org.opencms.db
Enum CmsUserSettings.UploadVariant

java.lang.Object
  extended by java.lang.Enum<CmsUserSettings.UploadVariant>
      extended by org.opencms.db.CmsUserSettings.UploadVariant
All Implemented Interfaces:
Serializable, Comparable<CmsUserSettings.UploadVariant>
Enclosing class:
CmsUserSettings

public static enum CmsUserSettings.UploadVariant
extends Enum<CmsUserSettings.UploadVariant>

A enum for the different upload variants.


Enum Constant Summary
applet
          The java applet upload.
basic
          The default html upload.
gwt
          The gwt upload.
 
Method Summary
static CmsUserSettings.UploadVariant valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CmsUserSettings.UploadVariant[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

applet

public static final CmsUserSettings.UploadVariant applet
The java applet upload.


basic

public static final CmsUserSettings.UploadVariant basic
The default html upload.


gwt

public static final CmsUserSettings.UploadVariant gwt
The gwt upload.

Method Detail

values

public static CmsUserSettings.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 (CmsUserSettings.UploadVariant c : CmsUserSettings.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 CmsUserSettings.UploadVariant valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null