com.github.simy4.xpath.expr.LiteralExpr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpath-to-xml-core Show documentation
Show all versions of xpath-to-xml-core Show documentation
Convenient utility to build XML models by evaluating XPath expressions
package com.github.simy4.xpath.expr;
import com.github.simy4.xpath.navigator.Node;
import com.github.simy4.xpath.view.LiteralView;
import com.github.simy4.xpath.view.ViewContext;
public class LiteralExpr implements Expr {
private final LiteralView> literal;
public LiteralExpr(String literal) {
this.literal = new LiteralView(literal);
}
@Override
@SuppressWarnings("unchecked")
public LiteralView resolve(ViewContext context) {
return (LiteralView) literal;
}
@Override
public String toString() {
return "'" + literal.toString() + "'";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy