Class TinkerHelper
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerHelper
-
public final class TinkerHelper extends Object
- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
-
-
Method Summary
-
-
-
Method Detail
-
getProperties
public static Map<String,List<VertexProperty>> getProperties(TinkerVertex vertex)
-
inComputerMode
public static boolean inComputerMode(AbstractTinkerGraph graph)
-
createGraphComputerView
public static TinkerGraphComputerView createGraphComputerView(AbstractTinkerGraph graph, GraphFilter graphFilter, Set<VertexComputeKey> computeKeys)
-
getGraphComputerView
public static TinkerGraphComputerView getGraphComputerView(AbstractTinkerGraph graph)
-
dropGraphComputerView
public static void dropGraphComputerView(AbstractTinkerGraph graph)
-
getEdges
public static Iterator<TinkerEdge> getEdges(TinkerVertex vertex, Direction direction, String... edgeLabels)
-
getEdgesTx
public static Iterator<TinkerEdge> getEdgesTx(TinkerVertex vertex, Direction direction, String... edgeLabels)
-
getVertices
public static Iterator<TinkerVertex> getVertices(TinkerVertex vertex, Direction direction, String... edgeLabels)
-
getVerticesTx
public static Iterator<TinkerVertex> getVerticesTx(TinkerVertex vertex, Direction direction, String... edgeLabels)
-
search
public static <E extends Element> Iterator<Property> search(AbstractTinkerGraph graph, String regex, Optional<Class<E>> type)
-
search
public static Iterator<Property> search(TinkerGraph graph, String regex)
-
-