cc.factorie.variable

ChainLink

trait ChainLink[This <: ChainLink[This, C], C <: Chain[C, This]] extends AbstractChainLink[This] with ThisType[This]

An element or "link" of a Chain sequence. ChainLink provides methods such as "next" and "prev".

Self Type
This
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ChainLink
  2. ThisType
  3. AbstractChainLink
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type ThisType = This

    Definition Classes
    ThisType

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def _setChainPosition(c: C, p: Int): Unit

    This method should never be called outside Chain.

    This method should never be called outside Chain.+= or Chain.insert or Chain.remove

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def between(other: This): Seq[This]

  9. def chain: C

  10. def chainAfter: IndexedSeq[This]

  11. def chainBefore: IndexedSeq[This]

  12. def chainHead: This

    Definition Classes
    AbstractChainLink
  13. def chainLast: This

    Definition Classes
    AbstractChainLink
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def firstInSeq: This

  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def getNext: Option[This]

  21. def getPrev: Option[This]

  22. def hasNext(n: Int): Boolean

  23. def hasNext: Boolean

    Definition Classes
    ChainLinkAbstractChainLink
  24. def hasPrev(n: Int): Boolean

  25. def hasPrev: Boolean

    Definition Classes
    ChainLinkAbstractChainLink
  26. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  29. def next(n: Int): This

    Return the ChainLink "n" positions ahead.

    Return the ChainLink "n" positions ahead. If this goes past the end of the Chain, return null.

    Definition Classes
    ChainLinkAbstractChainLink
  30. def next: This

    Definition Classes
    ChainLinkAbstractChainLink
  31. def nextWindow(n: Int): Seq[This]

  32. final def notify(): Unit

    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  34. def position: Int

    Definition Classes
    ChainLinkAbstractChainLink
  35. def prev(n: Int): This

    Return the ChainLink "n" positions behind.

    Return the ChainLink "n" positions behind. If this goes past the beginning of the Chain, return null.

    Definition Classes
    ChainLinkAbstractChainLink
  36. def prev: This

    Definition Classes
    ChainLinkAbstractChainLink
  37. def prevWindow(n: Int): Seq[This]

  38. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  39. def toString(): String

    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. def window(n: Int): Seq[This]

  44. def windowWithoutSelf(n: Int): Seq[This]

Inherited from variable.ThisType[This]

Inherited from AbstractChainLink[This]

Inherited from AnyRef

Inherited from Any

Ungrouped