Enum Template.TemplateDescriptor
- java.lang.Object
-
- java.lang.Enum<Template.TemplateDescriptor>
-
- com.priint.pubserver.comet.entity.template.Template.TemplateDescriptor
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Template.TemplateDescriptor>
- Enclosing class:
- Template
public static enum Template.TemplateDescriptor extends java.lang.Enum<Template.TemplateDescriptor>
The Enum TemplateDescriptor.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GRIDThe grid.PAGETEMPLATEThe pagetemplate.SNIPPETThe snippet.TABLEThe table.TEMPLATEThe template.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<? extends CometBinary>getIdmlClass()Gets the idml class.java.lang.Class<? extends CometEntity>getImplementationClass()Gets the implementation class.java.lang.Class<? extends CometBinary>getInddClass()Gets the indd class.java.lang.Class<? extends CometBinary>getMetadataClass()Gets the metadata class.java.lang.Class<? extends CometBinary>getPreviewClass()Gets the preview class.java.lang.Class<? extends CometBinary>getShapeClass()Gets the shape class.java.lang.Class<? extends CometBinary>getW2mlClass()Gets the W 2 ml class.static Template.TemplateDescriptorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Template.TemplateDescriptor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEMPLATE
public static final Template.TemplateDescriptor TEMPLATE
The template.
-
TABLE
public static final Template.TemplateDescriptor TABLE
The table.
-
SNIPPET
public static final Template.TemplateDescriptor SNIPPET
The snippet.
-
PAGETEMPLATE
public static final Template.TemplateDescriptor PAGETEMPLATE
The pagetemplate.
-
GRID
public static final Template.TemplateDescriptor GRID
The grid.
-
-
Method Detail
-
values
public static Template.TemplateDescriptor[] 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 (Template.TemplateDescriptor c : Template.TemplateDescriptor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Template.TemplateDescriptor 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
-
getIdmlClass
public java.lang.Class<? extends CometBinary> getIdmlClass()
Gets the idml class.- Returns:
- the idml class
-
getImplementationClass
public java.lang.Class<? extends CometEntity> getImplementationClass()
Gets the implementation class.- Returns:
- the implementation class
-
getInddClass
public java.lang.Class<? extends CometBinary> getInddClass()
Gets the indd class.- Returns:
- the indd class
-
getPreviewClass
public java.lang.Class<? extends CometBinary> getPreviewClass()
Gets the preview class.- Returns:
- the preview class
-
getShapeClass
public java.lang.Class<? extends CometBinary> getShapeClass()
Gets the shape class.- Returns:
- the shape class
-
getW2mlClass
public java.lang.Class<? extends CometBinary> getW2mlClass()
Gets the W 2 ml class.- Returns:
- the w 2 ml class
-
getMetadataClass
public java.lang.Class<? extends CometBinary> getMetadataClass()
Gets the metadata class.- Returns:
- the metadata class
-
-