org.opencms.jsp
Enum CmsJspTagContainer.JsonContainer

java.lang.Object
  extended by java.lang.Enum<CmsJspTagContainer.JsonContainer>
      extended by org.opencms.jsp.CmsJspTagContainer.JsonContainer
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CmsJspTagContainer.JsonContainer>
Enclosing class:
CmsJspTagContainer

public static enum CmsJspTagContainer.JsonContainer
extends java.lang.Enum<CmsJspTagContainer.JsonContainer>

Json property name constants for containers.


Enum Constant Summary
elements
          The list of elements.
isDetailView
          Flag for the detail view container.
maxElem
          The max allowed number of elements in the container.
name
          The container name.
type
          The container type.
width
          The container width.
 
Method Summary
static CmsJspTagContainer.JsonContainer valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CmsJspTagContainer.JsonContainer[] 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

elements

public static final CmsJspTagContainer.JsonContainer elements
The list of elements.


isDetailView

public static final CmsJspTagContainer.JsonContainer isDetailView
Flag for the detail view container.


maxElem

public static final CmsJspTagContainer.JsonContainer maxElem
The max allowed number of elements in the container.


name

public static final CmsJspTagContainer.JsonContainer name
The container name.


type

public static final CmsJspTagContainer.JsonContainer type
The container type.


width

public static final CmsJspTagContainer.JsonContainer width
The container width.

Method Detail

values

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

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

valueOf

public static CmsJspTagContainer.JsonContainer 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