| Package | Description |
|---|---|
| com.thinkaurelius.titan.hadoop |
| Modifier and Type | Method and Description |
|---|---|
HadoopPipeline |
HadoopPipeline._()
The identity step does not alter the graph in anyway.
|
HadoopPipeline |
HadoopPipeline.as(String name)
Name a step in order to reference it later in the expression.
|
HadoopPipeline |
HadoopPipeline.back(String step)
Go back to an element a named step ago.
|
HadoopPipeline |
HadoopPipeline.both(String... labels)
Take both incoming and outgoing labeled edges to adjacent vertices.
|
HadoopPipeline |
HadoopPipeline.bothE(String... labels)
Take both incoming and outgoing labeled edges to incident edges.
|
HadoopPipeline |
HadoopPipeline.bothV()
Go to both the incoming/head and outgoing/tail vertices of the edge.
|
HadoopPipeline |
HadoopPipeline.count()
Count the number of traversers currently in the graph
|
HadoopPipeline |
HadoopPipeline.dedup()
Remove any duplicate traversers at a single element.
|
HadoopPipeline |
HadoopPipeline.drop()
Drop all the elements of respective type at the current step.
|
HadoopPipeline |
HadoopPipeline.E()
Start a traversal at all edges in the graph.
|
HadoopPipeline |
HadoopPipeline.filter(String closure)
Emit or deny the current element based upon the provided boolean-based closure.
|
HadoopPipeline |
HadoopPipeline.groupCount()
Count the number of times the previous element (or property) has been traversed to.
|
HadoopPipeline |
HadoopPipeline.groupCount(String keyClosure)
Apply the provided closure to the incoming element to determine the grouping key.
|
HadoopPipeline |
HadoopPipeline.groupCount(String keyClosure,
String valueClosure)
Apply the provided closure to the incoming element to determine the grouping key.
|
HadoopPipeline |
HadoopPipeline.has(String key,
com.tinkerpop.blueprints.Compare compare,
Object... values)
Emit the current element if it has a property value comparable to the provided values.
|
HadoopPipeline |
HadoopPipeline.has(String key,
Object... values)
Emit the current element it has a property value equal to the provided values.
|
HadoopPipeline |
HadoopPipeline.has(String key,
com.tinkerpop.gremlin.Tokens.T compare,
Object... values)
Emit the current element if it has a property value comparable to the provided values.
|
HadoopPipeline |
HadoopPipeline.hasNot(String key,
com.tinkerpop.blueprints.Compare compare,
Object... values)
Emit the current element if it does not have a property value comparable to the provided values.
|
HadoopPipeline |
HadoopPipeline.hasNot(String key,
Object... values)
Emit the current element it does not have a property value equal to the provided values.
|
HadoopPipeline |
HadoopPipeline.hasNot(String key,
com.tinkerpop.gremlin.Tokens.T compare,
Object... values)
Emit the current element if it does not have a property value comparable to the provided values.
|
HadoopPipeline |
HadoopPipeline.in(String... labels)
Take incoming labeled edges to adjacent vertices.
|
HadoopPipeline |
HadoopPipeline.inE(String... labels)
Take incoming labeled edges to incident edges.
|
HadoopPipeline |
HadoopPipeline.interval(String key,
Object startValue,
Object endValue)
Emit the current element it has a property value equal within the provided range.
|
HadoopPipeline |
HadoopPipeline.inV()
Go to the incoming/head vertex of the edge.
|
HadoopPipeline |
HadoopPipeline.keep()
Keep all the elements of the respetive type at the current step.
|
HadoopPipeline |
HadoopPipeline.label()
Emit the label of the current edge.
|
HadoopPipeline |
HadoopPipeline.linkIn(String label,
String step)
Have the elements for the named step previous project an edge to the current vertex with provided label.
|
HadoopPipeline |
HadoopPipeline.linkIn(String label,
String step,
String mergeWeightKey)
Have the elements for the named step previous project an edge to the current vertex with provided label.
|
HadoopPipeline |
HadoopPipeline.linkOut(String label,
String step)
Have the elements for the named step previous project an edge from the current vertex with provided label.
|
HadoopPipeline |
HadoopPipeline.linkOut(String label,
String step,
String mergeWeightKey)
Have the elements for the named step previous project an edge from the current vertex with provided label.
|
HadoopPipeline |
HadoopPipeline.map()
Emit a string representation of the property map.
|
HadoopPipeline |
HadoopPipeline.order(com.tinkerpop.gremlin.Tokens.T order)
Order the previous property value results.
|
HadoopPipeline |
HadoopPipeline.order(com.tinkerpop.gremlin.Tokens.T order,
String elementKey)
Order the previous property value results and emit them with another element property value.
|
HadoopPipeline |
HadoopPipeline.order(com.tinkerpop.pipes.transform.TransformPipe.Order order)
Order the previous property value results.
|
HadoopPipeline |
HadoopPipeline.order(com.tinkerpop.pipes.transform.TransformPipe.Order order,
String elementKey)
Order the previous property value results and emit them with another element property value.
|
HadoopPipeline |
HadoopPipeline.out(String... labels)
Take outgoing labeled edges to adjacent vertices.
|
HadoopPipeline |
HadoopPipeline.outE(String... labels)
Take outgoing labeled edges to incident edges.
|
HadoopPipeline |
HadoopPipeline.outV()
Go to the outgoing/tail vertex of the edge.
|
HadoopPipeline |
HadoopPipeline.path()
Emit the path taken from start to current element.
|
HadoopPipeline |
HadoopPipeline.property(String key)
Emit the property value of an element.
|
HadoopPipeline |
HadoopPipeline.property(String key,
Class type)
Emit the property value of an element.
|
HadoopPipeline |
HadoopPipeline.script(String scriptUri,
String... args) |
HadoopPipeline |
HadoopPipeline.sideEffect(String closure)
Emit the element, but compute some sideeffect in the process.
|
HadoopPipeline |
HadoopPipeline.simplePath()
Emit the element only if it was arrived at via a path that does not have cycles in it.
|
HadoopPipeline |
HadoopPipeline.transform(String closure)
Apply the provided closure to the current element and emit the result.
|
HadoopPipeline |
HadoopPipeline.V()
Start a traversal at all vertices in the graph.
|
HadoopPipeline |
HadoopPipeline.v(long... ids)
Start a traversal at the vertices identified by the provided ids.
|
Copyright © 2012–2016. All rights reserved.