Package com.tinkerpop.gremlin.process.util

Examples of com.tinkerpop.gremlin.process.util.ImmutablePath


        super();
    }

    public PathTraverser(final T t, final Traversal.SideEffects sideEffects) {
        super(t, sideEffects);
        this.path = new ImmutablePath(Collections.emptySet(), t);
    }
View Full Code Here


        this.path = new ImmutablePath(Collections.emptySet(), t);
    }

    public PathTraverser(final String label, final T t, final Traversal.SideEffects sideEffects) {
        super(t, sideEffects);
        this.path = new ImmutablePath(label, t);
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.process.util.ImmutablePath

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.