public static enum Lambda.InputType extends Enum<Lambda.InputType>
Enum Constant and Description |
---|
LITERAL
The text passed is (almost) the original literal block - complies
with the spec.
|
PROCESSED
The text passed is processed/rendered before invocation.
|
Modifier and Type | Method and Description |
---|---|
static Lambda.InputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Lambda.InputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lambda.InputType LITERAL
public static final Lambda.InputType PROCESSED
public static Lambda.InputType[] values()
for (Lambda.InputType c : Lambda.InputType.values()) System.out.println(c);
public static Lambda.InputType 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 © 2017. All rights reserved.