(TransactionContext tcx, final String node)
| 72 | } |
| 73 | |
| 74 | public static ArrayList<String> getOutNeighbors(TransactionContext tcx, final String node){ |
| 75 | return getNeighbors(tcx, node, edge); |
| 76 | } |
| 77 | |
| 78 | public static ArrayList<String> getInNeighbors(TransactionContext tcx, final String node){ |
| 79 | return getNeighbors(tcx, node, inverse); |