Package

org.opencypher.gremlin.translation.ir

model

Permalink

package model

Visibility
  1. Public
  2. All

Type Members

  1. case class AddE(edgeLabel: String) extends GremlinStep with Product with Serializable

    Permalink
  2. case class AddV(vertexLabel: String) extends GremlinStep with Product with Serializable

    Permalink
  3. case class Aggregate(sideEffectKey: String) extends GremlinStep with Product with Serializable

    Permalink
  4. case class And(andTraversals: Seq[GremlinStep]*) extends GremlinStep with Product with Serializable

    Permalink
  5. case class As(stepLabel: String) extends GremlinStep with Product with Serializable

    Permalink
  6. case class Between(first: Any, second: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  7. case class BothE(edgeLabels: String*) extends GremlinStep with Product with Serializable

    Permalink
  8. case class By(traversal: Seq[GremlinStep], order: Option[apache.tinkerpop.gremlin.process.traversal.Order] = None) extends GremlinStep with Product with Serializable

    Permalink
  9. case class Cap(sideEffectKey: String) extends GremlinStep with Product with Serializable

    Permalink
  10. case class ChooseP2(predicate: GremlinPredicate, trueChoice: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  11. case class ChooseP3(predicate: GremlinPredicate, trueChoice: Seq[GremlinStep], falseChoice: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  12. case class ChooseT1(choiceTraversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  13. case class ChooseT2(choiceTraversal: Seq[GremlinStep], trueChoice: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  14. case class ChooseT3(traversalPredicate: Seq[GremlinStep], trueChoice: Seq[GremlinStep], falseChoice: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  15. case class Coalesce(coalesceTraversals: Seq[GremlinStep]*) extends GremlinStep with Product with Serializable

    Permalink
  16. case class Constant(e: Any) extends GremlinStep with Product with Serializable

    Permalink
  17. case class Contains(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  18. case class CountS(scope: Scope) extends GremlinStep with Product with Serializable

    Permalink
  19. case class Dedup(dedupLabels: String*) extends GremlinStep with Product with Serializable

    Permalink
  20. case class EmitT(traversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  21. case class EndsWith(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  22. case class Eq(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  23. case class FlatMapT(traversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  24. case class From(fromStepLabel: String) extends GremlinStep with Product with Serializable

    Permalink
  25. sealed case class GremlinBinding(name: String) extends Product with Serializable

    Permalink
  26. sealed trait GremlinPredicate extends AnyRef

    Permalink
  27. sealed trait GremlinStep extends AnyRef

    Permalink
  28. case class Gt(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  29. case class Gte(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  30. case class Has(propertyKey: String) extends GremlinStep with Product with Serializable

    Permalink
  31. case class HasKey(labels: String*) extends GremlinStep with Product with Serializable

    Permalink
  32. case class HasLabel(labels: String*) extends GremlinStep with Product with Serializable

    Permalink
  33. case class HasNot(propertyKey: String) extends GremlinStep with Product with Serializable

    Permalink
  34. case class HasP(propertyKey: String, predicate: GremlinPredicate) extends GremlinStep with Product with Serializable

    Permalink
  35. case class InE(edgeLabels: String*) extends GremlinStep with Product with Serializable

    Permalink
  36. case class Inject(injections: Any*) extends GremlinStep with Product with Serializable

    Permalink
  37. case class Is(predicate: GremlinPredicate) extends GremlinStep with Product with Serializable

    Permalink
  38. case class IsNode() extends GremlinPredicate with Product with Serializable

    Permalink
  39. case class IsRelationship() extends GremlinPredicate with Product with Serializable

    Permalink
  40. case class IsString() extends GremlinPredicate with Product with Serializable

    Permalink
  41. case class Limit(limit: Long) extends GremlinStep with Product with Serializable

    Permalink
  42. case class LimitS(scope: Scope, limit: Long) extends GremlinStep with Product with Serializable

    Permalink
  43. case class Local(traversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  44. case class Lt(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  45. case class Lte(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  46. case class MapF(function: CustomFunction) extends GremlinStep with Product with Serializable

    Permalink
  47. case class MapT(traversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  48. case class Math(expression: String) extends GremlinStep with Product with Serializable

    Permalink
  49. case class MaxS(scope: Scope) extends GremlinStep with Product with Serializable

    Permalink
  50. case class MeanS(scope: Scope) extends GremlinStep with Product with Serializable

    Permalink
  51. case class MinS(scope: Scope) extends GremlinStep with Product with Serializable

    Permalink
  52. case class Neq(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  53. case class Not(notTraversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  54. case class OptionT(pickToken: AnyRef, traversalOption: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  55. case class Optional(optionalTraversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  56. case class Or(orTraversals: Seq[GremlinStep]*) extends GremlinStep with Product with Serializable

    Permalink
  57. case class OutE(edgeLabels: String*) extends GremlinStep with Product with Serializable

    Permalink
  58. case class Project(keys: String*) extends GremlinStep with Product with Serializable

    Permalink
  59. case class Properties(propertyKeys: String*) extends GremlinStep with Product with Serializable

    Permalink
  60. case class PropertyG(token: T, value: Any) extends GremlinStep with Product with Serializable

    Permalink
  61. case class PropertyT(key: String, traversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  62. case class PropertyTC(cardinality: Cardinality, key: String, traversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  63. case class PropertyV(key: String, value: Any) extends GremlinStep with Product with Serializable

    Permalink
  64. case class PropertyVC(cardinality: Cardinality, key: String, value: Any) extends GremlinStep with Product with Serializable

    Permalink
  65. case class Range(scope: Scope, low: Long, high: Long) extends GremlinStep with Product with Serializable

    Permalink
  66. case class Repeat(repeatTraversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  67. case class SelectC(column: Column) extends GremlinStep with Product with Serializable

    Permalink
  68. case class SelectK(selectKeys: String*) extends GremlinStep with Product with Serializable

    Permalink
  69. case class SelectP(pop: Pop, selectKey: String) extends GremlinStep with Product with Serializable

    Permalink
  70. case class SideEffect(sideEffectTraversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  71. case class Skip(skip: Long) extends GremlinStep with Product with Serializable

    Permalink
  72. case class StartsWith(value: Any) extends GremlinPredicate with Product with Serializable

    Permalink
  73. case class SumS(scope: Scope) extends GremlinStep with Product with Serializable

    Permalink
  74. case class Tail(scope: Scope, limit: Long) extends GremlinStep with Product with Serializable

    Permalink
  75. case class Times(maxLoops: Int) extends GremlinStep with Product with Serializable

    Permalink
  76. case class To(toStepLabel: String) extends GremlinStep with Product with Serializable

    Permalink
  77. case class Union(unionTraversals: Seq[GremlinStep]*) extends GremlinStep with Product with Serializable

    Permalink
  78. case class Until(untilTraversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  79. case class ValueMap(includeTokens: Boolean) extends GremlinStep with Product with Serializable

    Permalink
  80. case class Values(propertyKeys: String*) extends GremlinStep with Product with Serializable

    Permalink
  81. case class WhereP(predicate: GremlinPredicate) extends GremlinStep with Product with Serializable

    Permalink
  82. case class WhereT(whereTraversal: Seq[GremlinStep]) extends GremlinStep with Product with Serializable

    Permalink
  83. case class With(name: String, value: AnyRef) extends GremlinStep with Product with Serializable

    Permalink
  84. case class WithK(key: String) extends GremlinStep with Product with Serializable

    Permalink
  85. case class Within(values: Any*) extends GremlinPredicate with Product with Serializable

    Permalink
  86. case class Without(values: Any*) extends GremlinPredicate with Product with Serializable

    Permalink

Value Members

  1. object AddV extends GremlinStep with Product with Serializable

    Permalink
  2. object Barrier extends GremlinStep with Product with Serializable

    Permalink
  3. object Count extends GremlinStep with Product with Serializable

    Permalink
  4. object Drop extends GremlinStep with Product with Serializable

    Permalink
  5. object Edge extends GremlinStep with Product with Serializable

    Permalink
  6. object Emit extends GremlinStep with Product with Serializable

    Permalink
  7. object Fold extends GremlinStep with Product with Serializable

    Permalink
  8. object Group extends GremlinStep with Product with Serializable

    Permalink
  9. object Id extends GremlinStep with Product with Serializable

    Permalink
  10. object Identity extends GremlinStep with Product with Serializable

    Permalink
  11. object InV extends GremlinStep with Product with Serializable

    Permalink
  12. object Index extends GremlinStep with Product with Serializable

    Permalink
  13. object Key extends GremlinStep with Product with Serializable

    Permalink
  14. object Label extends GremlinStep with Product with Serializable

    Permalink
  15. object Loops extends GremlinStep with Product with Serializable

    Permalink
  16. object Max extends GremlinStep with Product with Serializable

    Permalink
  17. object Mean extends GremlinStep with Product with Serializable

    Permalink
  18. object Min extends GremlinStep with Product with Serializable

    Permalink
  19. object Order extends GremlinStep with Product with Serializable

    Permalink
  20. object OtherV extends GremlinStep with Product with Serializable

    Permalink
  21. object OutV extends GremlinStep with Product with Serializable

    Permalink
  22. object Path extends GremlinStep with Product with Serializable

    Permalink
  23. object SimplePath extends GremlinStep with Product with Serializable

    Permalink
  24. object Sum extends GremlinStep with Product with Serializable

    Permalink
  25. object Unfold extends GremlinStep with Product with Serializable

    Permalink
  26. object Value extends GremlinStep with Product with Serializable

    Permalink
  27. object ValueMap extends GremlinStep with Product with Serializable

    Permalink
  28. object Vertex extends GremlinStep with Product with Serializable

    Permalink

Ungrouped