implicit class LinkBuilderOps[T1, T2] extends AnyRef

DSL methods for creating links between the two given contacts.

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

Instance Constructors

  1. new LinkBuilderOps(pair: (SystemBuilderDsl.Contact[T1], SystemBuilderDsl.Contact[T2]))(implicit sb: SystemBuilderDsl.SystemBuilder)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def castFilter[T3 <: T2](t2Class: Class[T3], name: String = ""): SystemBuilderDsl.Contact[T2]

    Cast data to the given class if possible.

    Cast data to the given class if possible. If the data cannot be cast, then it is filtered out. Prefer to use castFilter2

  6. def castFilter2[T3 <: T2](implicit t3Class: ClassTag[T3]): SystemBuilderDsl.Contact[T2]

    Cast data to the given class if possible.

    Cast data to the given class if possible. If the data cannot be cast, then it is filtered out. This method is preferred because it is less boilerplate. It is often enough to simply mention the type parameter.

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def collect(f: PartialFunction[T1, T2], name: String = ""): SystemBuilderDsl.Contact[T2]
  9. def const(value: T2, name: String = ""): SystemBuilderDsl.Contact[T2]
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def flatMap[TSeq](f: (T1) => GenTraversableOnce[T2], name: String = ""): SystemBuilderDsl.Contact[T2]
  13. def flatMapOpt(f: (T1) => Option[T2], name: String = ""): SystemBuilderDsl.Contact[T2]
  14. def flatten(name: String = "")(implicit ev: <:<[T1, GenTraversableOnce[T2]]): SystemBuilderDsl.Contact[T2]
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def labelNext(label: String*): LinkBuilderOps[T1, T2]
  19. def map(f: (T1) => T2, name: String = ""): SystemBuilderDsl.Contact[T2]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def stateFlatMap[S](stateHandle: SystemBuilderDsl.StateHandle[S], name: String = "")(f: (S, T1) => (S, GenTraversableOnce[T2])): SystemBuilderDsl.Contact[T2]
  24. def stateMap[S](stateHandle: SystemBuilderDsl.StateHandle[S], name: String = "")(f: (S, T1) => (S, T2)): SystemBuilderDsl.Contact[T2]
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def optionalMap(f: (T1) => Option[T2], name: String = ""): SystemBuilderDsl.Contact[T2]
    Annotations
    @deprecated
    Deprecated

    (Since version 13.04.2015) use #flatMapOpt

  3. def splitToElements(name: String = "")(implicit ev: <:<[T1, GenTraversableOnce[T2]]): SystemBuilderDsl.Contact[T2]
    Annotations
    @deprecated
    Deprecated

    (Since version 13.04.2015) use #flatten

Inherited from AnyRef

Inherited from Any

Ungrouped