public static enum StringLiteralTemplateParser.ExprKind extends Enum<StringLiteralTemplateParser.ExprKind>
Enum Constant and Description |
---|
Complex |
Identifier |
Verbatim |
Modifier and Type | Method and Description |
---|---|
static StringLiteralTemplateParser.ExprKind |
valueOf(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(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 © 2024. All rights reserved.