public enum ParsingContextType extends Enum<ParsingContextType>
| Enum Constant and Description |
|---|
ANY |
FUNCTION_CALL |
HEADER |
ITEM |
LIBRARY_CALL |
STRING_TEMPLATE |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static ParsingContextType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParsingContextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParsingContextType FUNCTION_CALL
public static final ParsingContextType LIBRARY_CALL
public static final ParsingContextType VALUE
public static final ParsingContextType ITEM
public static final ParsingContextType STRING_TEMPLATE
public static final ParsingContextType HEADER
public static final ParsingContextType ANY
public static ParsingContextType[] values()
for (ParsingContextType c : ParsingContextType.values()) System.out.println(c);
public static ParsingContextType 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.