|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Instruction.EndType> freemarker.template.instruction.Instruction.EndType
public static enum Instruction.EndType
Enumerates the type of end instructions that can terminate a given instruction.
Enum Constant Summary | |
---|---|
ASSIGN_END
Constant returned by getEndType() indicating that this
is an assign end instruction. |
|
BREAK
Constant returned by getEndType() indicating that this
is a break instruction. |
|
CASE
Constant returned by getEndType() indicating that this
is a case instruction. |
|
COMMENT_END
Constant returned by getEndType() indicating that this
is a comment end instruction. |
|
COMPRESS_END
Constant returned by getEndType() indicating that this
is a compress end instruction. |
|
DEFAULT
Constant returned by getEndType() indicating that this
is a default instruction. |
|
ELSE
Constant returned by getEndType() indicating that this
is an else instruction. |
|
ELSEIF
Constant returned by getEndType() indicating that this
is an elseif instruction. |
|
FUNCTION_END
Constant returned by getEndType() indicating that this
is a function end instruction. |
|
IF_END
Constant returned by getEndType() indicating that this
is an if end instruction. |
|
LIST_END
Constant returned by getEndType() indicating that this
is a list end instruction. |
|
LOCAL_END
Constant returned by getEndType() indicating that this
is a local end instruction. |
|
NONE
Constant returned by getEndType() indicating that this
is not an end instruction. |
|
NOPARSE_END
Constant returned by getEndType() indicating that this
is a noparse end instruction. |
|
SWITCH_END
Constant returned by getEndType() indicating that this
is a switch end instruction. |
|
TRANSFORM_END
Constant returned by getEndType() indicating that this
is a transform end instruction. |
Method Summary | |
---|---|
static Instruction.EndType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Instruction.EndType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Instruction.EndType NONE
getEndType()
indicating that this
is not an end instruction.
public static final Instruction.EndType BREAK
getEndType()
indicating that this
is a break instruction.
public static final Instruction.EndType CASE
getEndType()
indicating that this
is a case instruction.
public static final Instruction.EndType COMPRESS_END
getEndType()
indicating that this
is a compress end instruction.
public static final Instruction.EndType ELSE
getEndType()
indicating that this
is an else instruction.
public static final Instruction.EndType FUNCTION_END
getEndType()
indicating that this
is a function end instruction.
public static final Instruction.EndType IF_END
getEndType()
indicating that this
is an if end instruction.
public static final Instruction.EndType LIST_END
getEndType()
indicating that this
is a list end instruction.
public static final Instruction.EndType SWITCH_END
getEndType()
indicating that this
is a switch end instruction.
public static final Instruction.EndType COMMENT_END
getEndType()
indicating that this
is a comment end instruction.
public static final Instruction.EndType NOPARSE_END
getEndType()
indicating that this
is a noparse end instruction.
public static final Instruction.EndType TRANSFORM_END
getEndType()
indicating that this
is a transform end instruction.
public static final Instruction.EndType ELSEIF
getEndType()
indicating that this
is an elseif instruction.
public static final Instruction.EndType DEFAULT
getEndType()
indicating that this
is a default instruction.
public static final Instruction.EndType ASSIGN_END
getEndType()
indicating that this
is an assign end instruction.
public static final Instruction.EndType LOCAL_END
getEndType()
indicating that this
is a local end instruction.
Method Detail |
---|
public static Instruction.EndType[] values()
for (Instruction.EndType c : Instruction.EndType.values()) System.out.println(c);
public static Instruction.EndType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |