com.github.simy4.xpath.expr.NumberExpr 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.NumberView;
import com.github.simy4.xpath.view.ViewContext;
public class NumberExpr implements Expr {
private final NumberView> number;
public NumberExpr(double number) {
this.number = new NumberView(number);
}
@Override
@SuppressWarnings("unchecked")
public NumberView resolve(ViewContext context) {
return (NumberView) number;
}
@Override
public String toString() {
return number.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy