Package org.jrdf.query.expression

Examples of org.jrdf.query.expression.SingleValue


        return null;
    }

    public Void visitSingleValue(SingleValue value) {
        LinkedHashMap<Attribute, Node> avo = updateAVPVariables(value.getValue());
        expression = new SingleValue(avo);
        return null;
    }
View Full Code Here


    @Override
    public void caseARdfLiteralPrimaryExpression(ARdfLiteralPrimaryExpression node) {
        try {
            this.value = literalBuilder.createLiteral(node);
            this.expression = new SingleValue(getSingleAvp());
        } catch (ParserException e) {
            exception = e;
        }
    }
View Full Code Here

    @Override
    public void caseAVariable(AVariable node) {
        this.attributeName = new VariableName(node.getVariablename().getText());
        this.value = AnyNode.ANY_NODE;
        try {
            this.expression = new SingleValue(getSingleAvp());
        } catch (ParserException e) {
            this.exception = e;
        }
    }
View Full Code Here

    @Override
    public void caseAIriRefIriRefOrPrefixedName(AIriRefIriRefOrPrefixedName node) {
        try {
            this.value = uriBuilder.createURIReference(node);
            this.expression = new SingleValue(getSingleAvp());
        } catch (ParserException e) {
            exception = e;
        }
    }
View Full Code Here

    @Override
    public void caseAPrefixedNameIriRefOrPrefixedName(APrefixedNameIriRefOrPrefixedName node) {
        try {
            this.value = uriBuilder.createURIReference(node);
            this.expression = new SingleValue(getSingleAvp());
        } catch (ParserException e) {
            exception = e;
        }
    }
View Full Code Here

TOP

Related Classes of org.jrdf.query.expression.SingleValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.