org.opencms.db
public static enum CmsUserSettings.UploadVariant extends java.lang.Enum<CmsUserSettings.UploadVariant>
Enum Constant and Description |
---|
basic
The default html upload.
|
gwt
The gwt upload.
|
Modifier and Type | Method and Description |
---|---|
static CmsUserSettings.UploadVariant |
valueOf(java.lang.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.
|
public static final CmsUserSettings.UploadVariant basic
public static final CmsUserSettings.UploadVariant gwt
public static CmsUserSettings.UploadVariant valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static CmsUserSettings.UploadVariant[] values()
for (CmsUserSettings.UploadVariant c : CmsUserSettings.UploadVariant.values()) System.out.println(c);