org.opencms.ade.sitemap.shared
Enum CmsDetailPageTable.Status

java.lang.Object
  extended by java.lang.Enum<CmsDetailPageTable.Status>
      extended by org.opencms.ade.sitemap.shared.CmsDetailPageTable.Status
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CmsDetailPageTable.Status>
Enclosing class:
CmsDetailPageTable

public static enum CmsDetailPageTable.Status
extends java.lang.Enum<CmsDetailPageTable.Status>

A type indicating the status of a page.


Enum Constant Summary
firstDetailPage
          default detail page.
noDetailPage
          no detail page.
otherDetailPage
          non-default detail page.
 
Method Summary
static CmsDetailPageTable.Status valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CmsDetailPageTable.Status[] 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

firstDetailPage

public static final CmsDetailPageTable.Status firstDetailPage
default detail page.


noDetailPage

public static final CmsDetailPageTable.Status noDetailPage
no detail page.


otherDetailPage

public static final CmsDetailPageTable.Status otherDetailPage
non-default detail page.

Method Detail

values

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

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

valueOf

public static CmsDetailPageTable.Status 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