Packages

  • package root
    Definition Classes
    root
  • package scalax
    Definition Classes
    root
  • package collection
    Definition Classes
    scalax
  • package constrained

    Traits enabling to implement constraints and use constrained graphs.

    Traits enabling to implement constraints and use constrained graphs.

    Graphs may be constrained dynamically or statically.

    Dynamically constrained means that a constraint is bound to a constrained Graph instance at initialization time. The constrained Graph will then delegate all calls to the methods of ConstraintMethods and ConstraintHandlerMethods to the corresponding methods of the constraint bound to it. The immutable and mutable factories Graph in this package yield dynamically constrained graphs.

    To make use of dynamically constrained graphs you may make use of the predefined constraints or provide an own implementation of Constraint along with its companion object. To initialize a graph with one or several combined constraints just call the graph factory methods of the constraint package passing.

    Statically constrained means that the graph class directly implements the methods declared in ConstraintMethods.

    Definition Classes
    collection
  • class ConstraintBinaryOp[N, E[+X] <: EdgeLikeIn[X], G <: Graph[N, E]] extends ConstraintOp[N, E, G]
    Definition Classes
    constrained
  • PreCheckResults

class PreCheckResults extends PreCheckResult

Attributes
protected
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PreCheckResults
  2. PreCheckResult
  3. ConstraintViolation
  4. AnyRef
  5. Any
Implicitly
  1. by ChainingOps
  2. by EdgeAssoc
  3. by anyToNode
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PreCheckResults(followUp: PreCheckFollowUp, constraint: Constraint[N, E, G], result: PreCheckResult)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from PreCheckResults toany2stringadd[PreCheckResults] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def +=(op: Constraint[N, E, G], result: PreCheckResult): PreCheckResults
  5. def ->[B](y: B): (PreCheckResults, B)
    Implicit
    This member is added by an implicit conversion from PreCheckResults toArrowAssoc[PreCheckResults] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def abort: Boolean

    Whether this.followUp equals to Abort.

    Whether this.followUp equals to Abort.

    Definition Classes
    PreCheckResult
  8. final def apply(): PreCheckFollowUp
    Definition Classes
    PreCheckResult
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  11. final def complete: Boolean

    Whether this.followUp equals to Complete.

    Whether this.followUp equals to Complete.

    Definition Classes
    PreCheckResult
  12. def ensuring(cond: (PreCheckResults) => Boolean, msg: => Any): PreCheckResults
    Implicit
    This member is added by an implicit conversion from PreCheckResults toEnsuring[PreCheckResults] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (PreCheckResults) => Boolean): PreCheckResults
    Implicit
    This member is added by an implicit conversion from PreCheckResults toEnsuring[PreCheckResults] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: => Any): PreCheckResults
    Implicit
    This member is added by an implicit conversion from PreCheckResults toEnsuring[PreCheckResults] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): PreCheckResults
    Implicit
    This member is added by an implicit conversion from PreCheckResults toEnsuring[PreCheckResults] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. val followUp: PreCheckFollowUp
    Definition Classes
    PreCheckResultsPreCheckResult
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from PreCheckResults toStringFormat[PreCheckResults] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  23. final def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  24. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParam → Param
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  27. final def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  28. val n1: PreCheckResults
    Implicit
    This member is added by an implicit conversion from PreCheckResults toEdgeAssoc[PreCheckResults] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  32. def pipe[B](f: (PreCheckResults) => B): B
    Implicit
    This member is added by an implicit conversion from PreCheckResults toChainingOps[PreCheckResults] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  33. final def postCheck: Boolean

    Whether this.followUp equals to PostCheck.

    Whether this.followUp equals to PostCheck.

    Definition Classes
    PreCheckResult
  34. def productElementNames: Iterator[String]
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Product
  35. val results: Map[Constraint[N, E, G], PreCheckResult]
  36. val self: PreCheckResults
    Implicit
    This member is added by an implicit conversion from PreCheckResults toChainingOps[PreCheckResults] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  37. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. def tap[U](f: (PreCheckResults) => U): PreCheckResults
    Implicit
    This member is added by an implicit conversion from PreCheckResults toChainingOps[PreCheckResults] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. final def tupled: (PreCheckResult, PreCheckFollowUp)

    Returns a tuple of this and this.followUp.

    Returns a tuple of this and this.followUp.

    Definition Classes
    PreCheckResult
  42. val value: PreCheckResults
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNode → NodeParam
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from PreCheckResults toEdgeAssoc[PreCheckResults] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  47. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from PreCheckResults toEdgeAssoc[PreCheckResults] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()

Shadowed Implicit Value Members

  1. def toString(): String
    Implicit
    This member is added by an implicit conversion from PreCheckResults toOuterNode[PreCheckResults] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (preCheckResults: OuterNode[PreCheckResults]).toString()
    Definition Classes
    NodeParam → AnyRef → Any

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def [B](y: B): (PreCheckResults, B)
    Implicit
    This member is added by an implicit conversion from PreCheckResults toArrowAssoc[PreCheckResults] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from PreCheckResult

Inherited from ConstraintViolation

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion ChainingOps fromPreCheckResults to ChainingOps[PreCheckResults]

Inherited by implicit conversion EdgeAssoc fromPreCheckResults to EdgeAssoc[PreCheckResults]

Inherited by implicit conversion anyToNode fromPreCheckResults to OuterNode[PreCheckResults]

Inherited by implicit conversion any2stringadd fromPreCheckResults to any2stringadd[PreCheckResults]

Inherited by implicit conversion StringFormat fromPreCheckResults to StringFormat[PreCheckResults]

Inherited by implicit conversion Ensuring fromPreCheckResults to Ensuring[PreCheckResults]

Inherited by implicit conversion ArrowAssoc fromPreCheckResults to ArrowAssoc[PreCheckResults]

Ungrouped