All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.simy4.xpath.expr.LiteralExpr Maven / Gradle / Ivy

There is a newer version: 2.3.9
Show newest version
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