Interface LiteralExpr
- All Superinterfaces:
Expr, Serializable
- All Known Implementing Classes:
DefaultLiteralExpr
Represents an XPath string literal. This is production 29 in the
XPath 1.0 specification:
[29] Literal ::= '"' [^"]* '"'
| "'" [^']* "'"-
Method Summary
Modifier and TypeMethodDescriptionReturns the contents of the string literal, not including the quote marks.
-
Method Details
-
getLiteral
String getLiteral()Returns the contents of the string literal, not including the quote marks.- Returns:
- the contents of the string literal
-