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: 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. def _setChainPosition(c: C, p: Int): Unit

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

  5. final def asInstanceOf[T0]: T0

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

  7. def chain: C

  8. def chainAfter: IndexedSeq[This]

  9. def chainBefore: IndexedSeq[This]

  10. def chainHead: This

    Definition Classes
    AbstractChainLink
  11. def chainLast: This

    Definition Classes
    AbstractChainLink
  12. def clone(): AnyRef

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

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

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

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

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

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

  19. def getPrev: Option[This]

  20. def hasNext(n: Int): Boolean

  21. def hasNext: Boolean

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

  23. def hasPrev: Boolean

    Definition Classes
    ChainLinkAbstractChainLink
  24. def hashCode(): Int

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

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

    Definition Classes
    AnyRef
  27. 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
  28. def next: This

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

  30. final def notify(): Unit

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

    Definition Classes
    AnyRef
  32. def position: Int

    Definition Classes
    ChainLinkAbstractChainLink
  33. 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
  34. def prev: This

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

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

    Definition Classes
    AnyRef
  37. def toString(): String

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

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

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

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

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

Inherited from variable.ThisType[This]

Inherited from AbstractChainLink[This]

Inherited from AnyRef

Inherited from Any

Ungrouped