Package org.apache.vxquery.runtime.functions.type

Examples of org.apache.vxquery.runtime.functions.type.SequenceTypeMatcher


            if (expressionConstant.getExpressionTag() == LogicalExpressionTag.CONSTANT) {
                // Check constant against type supplied.
                TaggedValuePointable tvp2 = (TaggedValuePointable) TaggedValuePointable.FACTORY.createPointable();
                getConstantAsPointable((ConstantExpression) expressionConstant, tvp2);

                SequenceTypeMatcher stm = new SequenceTypeMatcher();
                stm.setSequenceType(sType);

                if (stm.sequenceTypeMatch(tvp2)) {
                    assignTreat.getExpressions().get(0).setValue(treatArg1);
                    operatorChanged = true;
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.vxquery.runtime.functions.type.SequenceTypeMatcher

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.