Package org.hippoecm.frontend.skin
Enum DocumentListColumn
- java.lang.Object
-
- java.lang.Enum<DocumentListColumn>
-
- org.hippoecm.frontend.skin.DocumentListColumn
-
- All Implemented Interfaces:
Serializable
,Comparable<DocumentListColumn>
public enum DocumentListColumn extends Enum<DocumentListColumn>
References to document list columns.
-
-
Field Summary
Fields Modifier and Type Field Description static String
DOCUMENT_LIST_CSS_CLASS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCssClass()
static DocumentListColumn
valueOf(String name)
Returns the enum constant of this type with the specified name.static DocumentListColumn[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATE
public static final DocumentListColumn DATE
-
HEIGHT
public static final DocumentListColumn HEIGHT
-
ICON
public static final DocumentListColumn ICON
-
LAST_MODIFIED_BY
public static final DocumentListColumn LAST_MODIFIED_BY
-
MIME_TYPE
public static final DocumentListColumn MIME_TYPE
-
NAME
public static final DocumentListColumn NAME
-
PATH
public static final DocumentListColumn PATH
-
SELECTOR
public static final DocumentListColumn SELECTOR
-
SIZE
public static final DocumentListColumn SIZE
-
STATE
public static final DocumentListColumn STATE
-
TRANSLATIONS
public static final DocumentListColumn TRANSLATIONS
-
TYPE
public static final DocumentListColumn TYPE
-
WIDTH
public static final DocumentListColumn WIDTH
-
-
Field Detail
-
DOCUMENT_LIST_CSS_CLASS
public static final String DOCUMENT_LIST_CSS_CLASS
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static DocumentListColumn[] 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 (DocumentListColumn c : DocumentListColumn.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentListColumn 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 nameNullPointerException
- if the argument is null
-
getCssClass
public String getCssClass()
-
-