public static enum Template.Type extends Enum<Template.Type>
| Enum Constant and Description |
|---|
BUILTIN |
UNRECOGNIZED |
USER |
| Modifier and Type | Method and Description |
|---|---|
static Template.Type |
fromValue(String type) |
static Template.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Template.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Template.Type USER
public static final Template.Type BUILTIN
public static final Template.Type UNRECOGNIZED
public static Template.Type[] values()
for (Template.Type c : Template.Type.values()) System.out.println(c);
public static Template.Type 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 nullpublic static Template.Type fromValue(String type)
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.