Package manifold.strings
Enum StringLiteralTemplateParser.ExprKind
- java.lang.Object
-
- java.lang.Enum<StringLiteralTemplateParser.ExprKind>
-
- manifold.strings.StringLiteralTemplateParser.ExprKind
-
- All Implemented Interfaces:
Serializable,Comparable<StringLiteralTemplateParser.ExprKind>
- Enclosing class:
- StringLiteralTemplateParser
public static enum StringLiteralTemplateParser.ExprKind extends Enum<StringLiteralTemplateParser.ExprKind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ComplexIdentifierVerbatim
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StringLiteralTemplateParser.ExprKindvalueOf(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.
-
-
-
Enum Constant Detail
-
Verbatim
public static final StringLiteralTemplateParser.ExprKind Verbatim
-
Identifier
public static final StringLiteralTemplateParser.ExprKind Identifier
-
Complex
public static final StringLiteralTemplateParser.ExprKind Complex
-
-
Method Detail
-
values
public static StringLiteralTemplateParser.ExprKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StringLiteralTemplateParser.ExprKind c : StringLiteralTemplateParser.ExprKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StringLiteralTemplateParser.ExprKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-