Packages

package pattern

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Connection extends AnyRef
  2. sealed trait CyclicConnection extends Connection
  3. final case class CyclicRelationship(endpoints: IdenticalEndpoints) extends SingleRelationship with CyclicConnection with Product with Serializable
  4. sealed trait DifferentEndpoints extends Endpoints
  5. sealed trait DirectedConnection extends Connection
  6. final case class DirectedRelationship(endpoints: DifferentEndpoints, semanticDirection: SemanticDirection) extends SingleRelationship with DirectedConnection with Product with Serializable
  7. final case class DirectedVarLengthRelationship(edgeType: CTRelationship, endpoints: DifferentEndpoints, lower: Int, upper: Option[Int], semanticDirection: SemanticDirection = OUTGOING) extends VarLengthRelationship with DirectedConnection with Product with Serializable
  8. sealed trait Endpoints extends Traversable[IRField]
  9. sealed trait IdenticalEndpoints extends Endpoints
  10. sealed trait Orientation[E <: Endpoints] extends Eq[E]
  11. final case class Pattern(fields: Set[IRField], topology: ListMap[IRField, Connection], properties: Map[IRField, MapExpression] = Map.empty, baseFields: Map[IRField, IRField] = Map.empty) extends Binds with Product with Serializable
  12. sealed trait SingleRelationship extends Connection
  13. sealed trait UndirectedConnection extends Connection
  14. final case class UndirectedRelationship(endpoints: DifferentEndpoints) extends SingleRelationship with UndirectedConnection with Product with Serializable
  15. final case class UndirectedVarLengthRelationship(edgeType: CTRelationship, endpoints: DifferentEndpoints, lower: Int, upper: Option[Int]) extends VarLengthRelationship with UndirectedConnection with Product with Serializable
  16. sealed trait VarLengthRelationship extends Connection

Value Members

  1. object DirectedRelationship extends Product with Serializable
  2. object Endpoints extends Product with Serializable
  3. object Orientation extends Serializable
  4. object Pattern extends Product with Serializable
  5. object SingleRelationship extends Product with Serializable
  6. object UndirectedRelationship extends Product with Serializable
  7. object VarLengthRelationship

Ungrouped