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. All

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def flatMap[TSeq](f: (T1) ⇒ GenTraversableOnce[T2], name: String = ""): SystemBuilderDsl.Contact[T2]
  14. def flatMapOpt(f: (T1) ⇒ Option[T2], name: String = ""): SystemBuilderDsl.Contact[T2]
  15. def flatten(name: String = "")(implicit ev: <:<[T1, GenTraversableOnce[T2]]): SystemBuilderDsl.Contact[T2]
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def labelNext(label: String*): LinkBuilderOps[T1, T2]
  20. def map(f: (T1) ⇒ T2, name: String = ""): SystemBuilderDsl.Contact[T2]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  24. def stateFlatMap[S](stateHandle: SystemBuilderDsl.StateHandle[S], name: String = "")(f: (S, T1) ⇒ (S, GenTraversableOnce[T2])): SystemBuilderDsl.Contact[T2]
  25. def stateMap[S](stateHandle: SystemBuilderDsl.StateHandle[S], name: String = "")(f: (S, T1) ⇒ (S, T2)): SystemBuilderDsl.Contact[T2]
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def optionalMap(f: (T1) ⇒ Option[T2], name: String = ""): SystemBuilderDsl.Contact[T2]
    Annotations
    @deprecated
    Deprecated

    (Since version 13.04.2015) use #flatMapOpt

  2. 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