public static enum Template.TemplateType extends Enum<Template.TemplateType>
| Enum Constant and Description |
|---|
DECLARATION |
OBJECT |
ORDINARY |
STRUCTURE |
UNIQUE |
| Modifier and Type | Method and Description |
|---|---|
static Template.TemplateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Template.TemplateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Template.TemplateType ORDINARY
public static final Template.TemplateType OBJECT
public static final Template.TemplateType DECLARATION
public static final Template.TemplateType STRUCTURE
public static final Template.TemplateType UNIQUE
public static Template.TemplateType[] values()
for (Template.TemplateType c : Template.TemplateType.values()) System.out.println(c);
public static Template.TemplateType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014 Quattor. All Rights Reserved.