Package org.neo4j.api.core

Examples of org.neo4j.api.core.Relationship


import ${package}.MyRelationshipTypes;

class SomeReturnableEvaluator implements ReturnableEvaluator {
    public boolean isReturnableNode(
    TraversalPosition currentPosition) {
        Relationship rel = currentPosition.lastRelationshipTraversed();
        return rel != null && rel.isType(MyRelationshipTypes.CODED_BY);
    }
View Full Code Here

TOP

Related Classes of org.neo4j.api.core.Relationship

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.