Package org.jrdf.query.relation.mem

Examples of org.jrdf.query.relation.mem.AttributeTupleComparatorImpl


        this.index = newIndex;
    }

    public PartitionedRelationImpl(NodeComparator newNodeComparator, Attribute newAttribute,
        EvaluatedRelation newRelation) {
        this.tupleAVComparator = new AttributeTupleComparatorImpl(newNodeComparator);
        this.attribute = newAttribute;
        this.relation = newRelation;
        this.boundSet = new HashSet<Tuple>();
        this.unboundSet = new HashSet<Tuple>();
        this.orderedBoundedSet = new ArrayList<Tuple>();
View Full Code Here

TOP

Related Classes of org.jrdf.query.relation.mem.AttributeTupleComparatorImpl

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.