All Methods Static Methods Concrete Methods 
| Modifier and Type | 
Method | 
Description | 
static TinkerGraphComputerView | 
createGraphComputerView(AbstractTinkerGraph graph,
                       GraphFilter graphFilter,
                       Set<VertexComputeKey> computeKeys) | 
  | 
static void | 
dropGraphComputerView(AbstractTinkerGraph graph) | 
  | 
static Map<Object,Edge> | 
getEdges(TinkerGraph graph) | 
 Allows direct access to a TinkerGraph's storage which can be helpful for advanced use cases. 
 | 
static Iterator<TinkerEdge> | 
getEdges(TinkerVertex vertex,
        Direction direction,
        String... edgeLabels) | 
  | 
static Iterator<TinkerEdge> | 
getEdgesTx(TinkerVertex vertex,
          Direction direction,
          String... edgeLabels) | 
  | 
static TinkerGraphComputerView | 
getGraphComputerView(AbstractTinkerGraph graph) | 
  | 
static Map<String,List<VertexProperty>> | 
getProperties(TinkerVertex vertex) | 
  | 
static Map<Object,Vertex> | 
getVertices(TinkerGraph graph) | 
 Allows direct access to a TinkerGraph's storage which can be helpful for advanced use cases. 
 | 
static Iterator<TinkerVertex> | 
getVertices(TinkerVertex vertex,
           Direction direction,
           String... edgeLabels) | 
  | 
static Iterator<TinkerVertex> | 
getVerticesTx(TinkerVertex vertex,
             Direction direction,
             String... edgeLabels) | 
  | 
static boolean | 
inComputerMode(AbstractTinkerGraph graph) | 
  | 
static <E extends Element> Iterator<Property> | 
search(AbstractTinkerGraph graph,
      String regex,
      Optional<Class<E>> type) | 
Search for  Propertys attached to  Elements of the supplied element type using the supplied
 regex.  
 | 
static Iterator<Property> | 
search(TinkerGraph graph,
      String regex) | 
 |