Created
August 19, 2014 17:36
-
-
Save okram/9773f55716fbb08c661c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public default <E2> Neo4jTraversal<S, E2> map(final SFunction<Traverser<E>, E2> function) { | |
| return (Neo4jTraversal) GraphTraversal.super.map(function); | |
| } | |
| public default <E2> Neo4jTraversal<S, E2> flatMap(final SFunction<Traverser<E>, Iterator<E2>> function) { | |
| return (Neo4jTraversal) GraphTraversal.super.flatMap(function); | |
| } | |
| public default Neo4jTraversal<S, Object> id() { | |
| return (Neo4jTraversal) GraphTraversal.super.id(); | |
| } | |
| public default Neo4jTraversal<S, String> label() { | |
| return (Neo4jTraversal) GraphTraversal.super.label(); | |
| } | |
| public default Neo4jTraversal<S, E> identity() { | |
| return (Neo4jTraversal) GraphTraversal.super.identity(); | |
| } | |
| public default Neo4jTraversal<S, Vertex> to(final Direction direction, final int branchFactor, final String... labels) { | |
| return (Neo4jTraversal) GraphTraversal.super.to(direction, branchFactor, labels); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment