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

java.lang.Object
  extended by java.lang.Enum<I_CmsGalleryProviderConstants.ImageParams>
      extended by org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants.ImageParams
All Implemented Interfaces:
com.google.gwt.user.client.rpc.IsSerializable, java.io.Serializable, java.lang.Comparable<I_CmsGalleryProviderConstants.ImageParams>
Enclosing interface:
I_CmsGalleryProviderConstants

public static enum I_CmsGalleryProviderConstants.ImageParams
extends java.lang.Enum<I_CmsGalleryProviderConstants.ImageParams>
implements com.google.gwt.user.client.rpc.IsSerializable

Image parameteres.


Enum Constant Summary
dateLastModified
          The last modified date.
file_name
          The image file name.
file_size
          The file size.
file_type
          Image type.
height
          The image height.
path
          The image path.
title
          Property title.
width
          The image width.
 
Method Summary
static I_CmsGalleryProviderConstants.ImageParams valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static I_CmsGalleryProviderConstants.ImageParams[] 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

dateLastModified

public static final I_CmsGalleryProviderConstants.ImageParams dateLastModified
The last modified date.


file_name

public static final I_CmsGalleryProviderConstants.ImageParams file_name
The image file name.


file_size

public static final I_CmsGalleryProviderConstants.ImageParams file_size
The file size.


file_type

public static final I_CmsGalleryProviderConstants.ImageParams file_type
Image type.


height

public static final I_CmsGalleryProviderConstants.ImageParams height
The image height.


path

public static final I_CmsGalleryProviderConstants.ImageParams path
The image path.


title

public static final I_CmsGalleryProviderConstants.ImageParams title
Property title.


width

public static final I_CmsGalleryProviderConstants.ImageParams width
The image width.

Method Detail

values

public static I_CmsGalleryProviderConstants.ImageParams[] 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.ImageParams c : I_CmsGalleryProviderConstants.ImageParams.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.ImageParams 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