org.opencms.ade.galleries.shared
Enum I_CmsGalleryProviderConstants.ReqParam

java.lang.Object
  extended by java.lang.Enum<I_CmsGalleryProviderConstants.ReqParam>
      extended by org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants.ReqParam
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<I_CmsGalleryProviderConstants.ReqParam>
Enclosing interface:
I_CmsGalleryProviderConstants

public static enum I_CmsGalleryProviderConstants.ReqParam
extends java.lang.Enum<I_CmsGalleryProviderConstants.ReqParam>

Request parameter name constants.


Enum Constant Summary
currentelement
          The current element.
data
          Generic data parameter.
dialogmode
          The dialog mode.
fieldid
          The widget field id.
gallerypath
          The gallery path.
gallerytabid
          The gallery tab id.
hashid
          The widget field id hash.
locale
          The current locale.
resource
          The edited resource.
tabs
          The tabs configuration, which tabs should be displayed.
types
          The available types for the gallery dialog.
 
Method Summary
static I_CmsGalleryProviderConstants.ReqParam valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static I_CmsGalleryProviderConstants.ReqParam[] 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

currentelement

public static final I_CmsGalleryProviderConstants.ReqParam currentelement
The current element.


data

public static final I_CmsGalleryProviderConstants.ReqParam data
Generic data parameter.


dialogmode

public static final I_CmsGalleryProviderConstants.ReqParam dialogmode
The dialog mode.


fieldid

public static final I_CmsGalleryProviderConstants.ReqParam fieldid
The widget field id.


gallerypath

public static final I_CmsGalleryProviderConstants.ReqParam gallerypath
The gallery path.


gallerytabid

public static final I_CmsGalleryProviderConstants.ReqParam gallerytabid
The gallery tab id.


hashid

public static final I_CmsGalleryProviderConstants.ReqParam hashid
The widget field id hash.


locale

public static final I_CmsGalleryProviderConstants.ReqParam locale
The current locale.


resource

public static final I_CmsGalleryProviderConstants.ReqParam resource
The edited resource.


tabs

public static final I_CmsGalleryProviderConstants.ReqParam tabs
The tabs configuration, which tabs should be displayed.


types

public static final I_CmsGalleryProviderConstants.ReqParam types
The available types for the gallery dialog.

Method Detail

values

public static I_CmsGalleryProviderConstants.ReqParam[] 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 (I_CmsGalleryProviderConstants.ReqParam c : I_CmsGalleryProviderConstants.ReqParam.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static I_CmsGalleryProviderConstants.ReqParam 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 name
java.lang.NullPointerException - if the argument is null