public static enum StringLiteralTemplateParser.ExprKind extends java.lang.Enum<StringLiteralTemplateParser.ExprKind>
| Enum Constant and Description |
|---|
Complex |
Identifier |
Verbatim |
| Modifier and Type | Method and Description |
|---|---|
static StringLiteralTemplateParser.ExprKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringLiteralTemplateParser.ExprKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringLiteralTemplateParser.ExprKind Verbatim
public static final StringLiteralTemplateParser.ExprKind Identifier
public static final StringLiteralTemplateParser.ExprKind Complex
public static StringLiteralTemplateParser.ExprKind[] values()
for (StringLiteralTemplateParser.ExprKind c : StringLiteralTemplateParser.ExprKind.values()) System.out.println(c);
public static StringLiteralTemplateParser.ExprKind 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 namejava.lang.NullPointerException - if the argument is nullCopyright © 2021. All rights reserved.