Package com.jalios.jcms.uicomponent
Enum TypeEntryDefaultTemplates
- java.lang.Object
-
- java.lang.Enum<TypeEntryDefaultTemplates>
-
- com.jalios.jcms.uicomponent.TypeEntryDefaultTemplates
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TypeEntryDefaultTemplates>
public enum TypeEntryDefaultTemplates extends java.lang.Enum<TypeEntryDefaultTemplates>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_BODY
EDIT
EDIT_FRONT
FULL
FULL_DISPLAY_EDIT_MODAL
PORTLET_BOX
QUERY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
void
setName(java.lang.String name)
java.lang.String
toString()
static TypeEntryDefaultTemplates
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TypeEntryDefaultTemplates[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL
public static final TypeEntryDefaultTemplates FULL
-
APP_BODY
public static final TypeEntryDefaultTemplates APP_BODY
-
QUERY
public static final TypeEntryDefaultTemplates QUERY
-
EDIT
public static final TypeEntryDefaultTemplates EDIT
-
EDIT_FRONT
public static final TypeEntryDefaultTemplates EDIT_FRONT
-
FULL_DISPLAY_EDIT_MODAL
public static final TypeEntryDefaultTemplates FULL_DISPLAY_EDIT_MODAL
-
PORTLET_BOX
public static final TypeEntryDefaultTemplates PORTLET_BOX
-
-
Method Detail
-
values
public static TypeEntryDefaultTemplates[] 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 (TypeEntryDefaultTemplates c : TypeEntryDefaultTemplates.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TypeEntryDefaultTemplates 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 namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<TypeEntryDefaultTemplates>
-
-