cc.factorie.app.nlp

AttrCubbieSlots

trait AttrCubbieSlots extends util.Cubbie

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AttrCubbieSlots
  2. Cubbie
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait AbstractInverseSlot[+A <: Cubbie] extends AnyRef

    An AbstractInverseSlot is a slot that contains a collection of other cubbies, namely the ones that have the given target value as value of the given foreign slot.

  2. trait AbstractRefSlot[+A <: Cubbie] extends AbstractSlot[Any]

    A helper trait for libraries that need ref slots to be covariant.

  3. trait AbstractSlot[+T] extends AnyRef

    A Cubbie has a collection of slots (or fields) that store the attributes of the cubbie.

  4. case class AnySlot[A](name: String) extends PrimitiveSlot[A] with Product with Serializable

    This allows any type to be stored in a slot.

  5. case class BooleanListSlot(name: String) extends PrimitiveListSlot[Boolean] with Product with Serializable

    Definition Classes
    Cubbie
  6. case class BooleanSlot(name: String) extends PrimitiveSlot[Boolean] with Product with Serializable

    Definition Classes
    Cubbie
  7. case class CubbieListSlot[A <: Cubbie](name: String, constructor: () ⇒ A) extends Slot[Seq[A]] with Product with Serializable

    A slot that contains a list of cubbies.

  8. case class CubbieSlot[A <: Cubbie](name: String, constructor: () ⇒ A) extends Slot[A] with Product with Serializable

    A slot that contains a cubbie.

  9. case class DateSlot(name: String) extends PrimitiveSlot[Date] with Product with Serializable

    Definition Classes
    Cubbie
  10. case class DoubleListSlot(name: String) extends PrimitiveListSlot[Double] with Product with Serializable

    Definition Classes
    Cubbie
  11. case class DoubleSlot(name: String) extends PrimitiveSlot[Double] with Product with Serializable

    Definition Classes
    Cubbie
  12. case class IntListSlot(name: String) extends PrimitiveListSlot[Int] with Product with Serializable

    Definition Classes
    Cubbie
  13. case class IntSlot(name: String) extends PrimitiveSlot[Int] with Product with Serializable

    Definition Classes
    Cubbie
  14. case class InverseSlot[A <: Cubbie](name: String, slot: (A) ⇒ A.AbstractRefSlot[Cubbie])(implicit m: Manifest[A]) extends AbstractInverseSlot[A] with Product with Serializable

    The Inverse slot is a default implementation of the AbstractInverseSlot.

  15. type MapType = Map[String, Any]

    The type of underlying Map.

    The type of underlying Map. We use the generic scala mutable Map interface. If clients want to use their own Map data structure (such as MongoDB maps) they only need to provide a wrapper mutable.Map implementation around their data.

    Definition Classes
    Cubbie
  16. trait PrimitiveListSlot[A] extends Slot[Seq[A]]

    A slot containing a list of primitives.

  17. trait PrimitiveSlot[T] extends Slot[T]

    A slot containing primitive values (ints, strings, booleans etc.

  18. case class RefSlot[A <: Cubbie](name: String, constructor: () ⇒ A) extends Slot[Any] with AbstractRefSlot[A] with AbstractInverseSlot[A] with Product with Serializable

    A RefSlot is a simple type of AbstractInverseSlot which "contains" all cubbies of a given type with the given ID.

  19. trait Slot[T] extends AbstractSlot[T]

    Default implementation of an AbstractSlot.

  20. case class StringListSlot(name: String) extends PrimitiveListSlot[String] with Product with Serializable

    Definition Classes
    Cubbie
  21. case class StringSlot(name: String) extends PrimitiveSlot[String] with Product with Serializable

    Definition Classes
    Cubbie
  22. case class TensorListSlot(name: String) extends PrimitiveListSlot[Tensor] with Product with Serializable

    Definition Classes
    Cubbie
  23. case class TensorSlot(name: String) extends PrimitiveSlot[Tensor] with Product with Serializable

    Definition Classes
    Cubbie

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. object Id extends AbstractSlot[Any]

    Every cubbie has an ID.

  7. def _map: MapType

    Returns underlying map.

    Returns underlying map. todo: remove this

    returns

    the current underlying map. If empty, a new map is created and set.

    Definition Classes
    Cubbie
  8. def _map_=(map: Map[String, Any]): Unit

    Alternative method to set underyling map.

    Alternative method to set underyling map. todo: remove this.

    map

    the underlying map.

    Definition Classes
    Cubbie
  9. def _newDefaultMap: MapType

    Creates a default map.

    Creates a default map.

    returns

    a default map to be used as underyling map.

    Definition Classes
    Cubbie
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def cubbieClass: Class[util.Cubbie]

    Typed access to the cubbie class.

    Typed access to the cubbie class.

    returns

    the Cubbie class.

    Definition Classes
    Cubbie
  13. def cubbieName: String

    Definition Classes
    Cubbie
  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  16. def fetchAttr(a: Attr): Attr

  17. val fetchHooks: Hooks1[AnyRef]

  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. final def id: Any

    Returns the ID of the cubbie.

    Returns the ID of the cubbie. Creates a new ID if no ID has yet been set.

    returns

    an identifier for this cubbie.

    Definition Classes
    Cubbie
  22. def idName: String

    The map key to use for the ID field.

    The map key to use for the ID field.

    returns

    the key to use for the id field.

    Definition Classes
    Cubbie
  23. def id_=(i: Any): Unit

    Set an id for this cubbie.

    Set an id for this cubbie.

    i

    an ID. Generally can be any type of object, but during serialization some types may not be storable by the underyling serialization framework.

    Definition Classes
    Cubbie
  24. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    AnyRef
  26. def newId: Long

    Create a new random ID.

    Create a new random ID.

    returns

    random ID.

    Definition Classes
    Cubbie
  27. final def notify(): Unit

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

    Definition Classes
    AnyRef
  29. def setMap(map: MapType): AttrCubbieSlots.this.type

    Set the underlying map for this cubbie.

    Set the underlying map for this cubbie.

    map

    the map that will be used as underlying datastructure

    returns

    this cubbie.

    Definition Classes
    Cubbie
  30. def storeAttr(a: Attr): AttrCubbieSlots.this.type

  31. val storeHooks: Hooks1[Attr]

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

    Definition Classes
    AnyRef
  33. def toString(): String

    Prints out the underlying map

    Prints out the underlying map

    returns

    a string representation of the underyling map.

    Definition Classes
    Cubbie → AnyRef → Any
  34. def version: String

    Definition Classes
    Cubbie
  35. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from util.Cubbie

Inherited from AnyRef

Inherited from Any

Ungrouped