Package

gremlin

scala

Permalink

package scala

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. scala
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class BranchCase[BranchOn, End, NewEnd](pickToken: BranchOn, traversal: (GremlinScala[End, _]) ⇒ GremlinScala[NewEnd, _]) extends BranchOption[End, NewEnd] with Product with Serializable

    Permalink
  2. case class BranchMatchAll[End, NewEnd](traversal: (GremlinScala[End, _]) ⇒ GremlinScala[NewEnd, _]) extends BranchOption[End, NewEnd] with Product with Serializable

    Permalink
  3. trait BranchOption[End, NewEnd] extends AnyRef

    Permalink

    Define the traversal to run if the given predicate is true - used in branch step

    Define the traversal to run if the given predicate is true - used in branch step

    you might think that traversal should be GremlinScala[End, _] => GremlinScala[Boolean, _], but that's not how tp3 works: e.g. .value(Age).is(30) returns 30, not true

  4. case class BranchOtherwise[End, NewEnd](traversal: (GremlinScala[End, _]) ⇒ GremlinScala[NewEnd, _]) extends BranchOption[End, NewEnd] with Product with Serializable

    Permalink
  5. sealed class DefaultsToAny[A] extends AnyRef

    Permalink
  6. type Edge = org.apache.tinkerpop.gremlin.structure.Edge

    Permalink
  7. implicit class EdgeAsJava extends AnyRef

    Permalink
  8. implicit class EdgeAsScala extends AnyRef

    Permalink
  9. type Element = org.apache.tinkerpop.gremlin.structure.Element

    Permalink
  10. type Graph = org.apache.tinkerpop.gremlin.structure.Graph

    Permalink
  11. implicit class GraphAsJava extends AnyRef

    Permalink
  12. implicit class GraphAsScala[G <: Graph] extends AnyRef

    Permalink
  13. case class GremlinScala[End, Labels <: HList](traversal: GraphTraversal[_, End]) extends Product with Serializable

    Permalink
  14. implicit class GremlinScalaEdgeFunctions extends AnyRef

    Permalink
  15. implicit class GremlinScalaVertexFunctions extends AnyRef

    Permalink
  16. case class Key[A](name: String) extends Product with Serializable

    Permalink
  17. case class KeyValue[A](key: Key[A], value: A) extends Product with Serializable

    Permalink
  18. type Label = String

    Permalink
  19. type Property[A] = org.apache.tinkerpop.gremlin.structure.Property[A]

    Permalink
  20. implicit class PropertyOps[A] extends AnyRef

    Permalink
  21. case class ScalaEdge(edge: Edge) extends ScalaElement[Edge] with Product with Serializable

    Permalink
  22. trait ScalaElement[ElementType <: Element] extends AnyRef

    Permalink
  23. case class ScalaGraph(traversalSource: TraversalSource) extends Product with Serializable

    Permalink
  24. case class ScalaVertex(vertex: Vertex) extends ScalaElement[Vertex] with Product with Serializable

    Permalink
  25. class SelectAllStep[S, Labels <: HList, LabelsTuple] extends MapStep[S, LabelsTuple] with TraversalParent

    Permalink
  26. case class SemiDoubleEdge(right: Vertex, label: String, properties: Seq[KeyValue[_]] = Nil) extends Product with Serializable

    Permalink
  27. case class SemiEdge(from: Vertex, label: String, properties: Seq[KeyValue[_]] = Nil) extends Product with Serializable

    Permalink
  28. implicit class SemiEdgeFunctions extends AnyRef

    Permalink
  29. implicit class SemiEdgeProductFunctions[LabelAndValuesAsTuple <: Product, LabelAndValues <: HList, Lbl <: String, KeyValues <: HList] extends AnyRef

    Permalink
  30. case class StepLabel[A](name: String = randomUUID.toString) extends Product with Serializable

    Permalink
  31. case class TraversalSource(underlying: GraphTraversalSource) extends Product with Serializable

    Permalink
  32. type Traverser[A] = org.apache.tinkerpop.gremlin.process.traversal.Traverser[A]

    Permalink
  33. type Vertex = org.apache.tinkerpop.gremlin.structure.Vertex

    Permalink
  34. implicit class VertexAsJava extends AnyRef

    Permalink
  35. implicit class VertexAsScala extends AnyRef

    Permalink

Value Members

  1. object DefaultsToAny

    Permalink
  2. object P

    Permalink

    the scala version of tinkerpop's P, mostly to avoid unnecessarily complicated constructs like P.within(vertices.asJava: JCollection[Vertex])

  3. object ScalaGraph extends Serializable

    Permalink
  4. object StepLabel extends Serializable

    Permalink
  5. object TraversalSource extends Serializable

    Permalink
  6. def __[A](a: A): GremlinScala[A, HNil]

    Permalink
  7. def __[A](): GremlinScala[A, HNil]

    Permalink
  8. implicit def liftTraverser[A, B](fun: (A) ⇒ B): (Traverser[A]) ⇒ B

    Permalink
  9. implicit def toConsumer[A](f: (A) ⇒ Unit): Consumer[A]

    Permalink
  10. implicit def toJavaBiFunction[A, B, C](f: (A, B) ⇒ C): BiFunction[A, B, C]

    Permalink
  11. implicit def toJavaBiPredicate[A, B](predicate: (A, B) ⇒ Boolean): BiPredicate[A, B]

    Permalink
  12. implicit def toJavaBinaryOperator[A](f: (A, A) ⇒ A): BinaryOperator[A]

    Permalink
  13. implicit def toJavaFunction[A, B](f: (A) ⇒ B): Function[A, B]

    Permalink
  14. implicit def toJavaPredicate[A](f: (A) ⇒ Boolean): Predicate[A]

    Permalink
  15. implicit def toJavaUnaryOperator[A](f: (A) ⇒ A): UnaryOperator[A]

    Permalink
  16. implicit def toSupplier[A](f: () ⇒ A): Supplier[A]

    Permalink
  17. implicit def wrap[A](traversal: GraphTraversal[_, A]): GremlinScala[A, HNil]

    Permalink
  18. implicit def wrap(g: Graph): ScalaGraph

    Permalink
  19. implicit def wrap(e: Edge): ScalaEdge

    Permalink
  20. implicit def wrap(v: Vertex): ScalaVertex

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped