org.opencms.xml.containerpage
Enum CmsXmlGroupContainer.XmlNode

java.lang.Object
  extended by java.lang.Enum<CmsXmlGroupContainer.XmlNode>
      extended by org.opencms.xml.containerpage.CmsXmlGroupContainer.XmlNode
All Implemented Interfaces:
Serializable, Comparable<CmsXmlGroupContainer.XmlNode>
Enclosing class:
CmsXmlGroupContainer

public static enum CmsXmlGroupContainer.XmlNode
extends Enum<CmsXmlGroupContainer.XmlNode>

XML node name constants.


Enum Constant Summary
Description
          Container description node name.
Element
          Container elements node name.
GroupContainers
          Main node name.
Title
          Container title node name.
Type
          Container type node name.
Uri
          File list URI node name.
 
Method Summary
static CmsXmlGroupContainer.XmlNode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CmsXmlGroupContainer.XmlNode[] 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

Description

public static final CmsXmlGroupContainer.XmlNode Description
Container description node name.


Element

public static final CmsXmlGroupContainer.XmlNode Element
Container elements node name.


GroupContainers

public static final CmsXmlGroupContainer.XmlNode GroupContainers
Main node name.


Title

public static final CmsXmlGroupContainer.XmlNode Title
Container title node name.


Type

public static final CmsXmlGroupContainer.XmlNode Type
Container type node name.


Uri

public static final CmsXmlGroupContainer.XmlNode Uri
File list URI node name.

Method Detail

values

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

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

valueOf

public static CmsXmlGroupContainer.XmlNode 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