case class CiteCollectionData(data: Vector[CitePropertyValue]) extends Product with Serializable

Data values for a repository of citable objects and properties. The data are organized as a Vector of CitePropertyValues. URN twiddling on this Vector can be used to construct any other valid sets of values, such as all values in a given collection, or all values used to create an individual CiteObject.

data

vector of property values. Because CitePropertyValues have URNs, they can be grouped by object using URN twiddling.

Annotations
@JSExportAll()
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CiteCollectionData
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CiteCollectionData(data: Vector[CitePropertyValue])

    data

    vector of property values. Because CitePropertyValues have URNs, they can be grouped by object using URN twiddling.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++(collection2: CiteCollectionData): CiteCollectionData

    Union of this collection with a second collection.

    Union of this collection with a second collection. The resulting collection continues the set of unique members belonging to either collection.

    collection2

    Collection to unite with this collection.

  4. def --(collection2: CiteCollectionData): CiteCollectionData

    Difference of this collection with a second collection.

    Difference of this collection with a second collection. The resulting collection contains member elements in one collection but not the other.

    collection2

    Collection to unite with this collection.

  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. def collections: Set[Cite2Urn]

    Find URNs for each collection in the data set.

  9. val data: Vector[CitePropertyValue]
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def isEmpty: Boolean

    True if there are no property values.

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def objects: Set[Cite2Urn]

    Find URNs for each object in the collection.

  19. def properties: Set[Cite2Urn]

    Find URNs for each property value in the collection.

  20. def propertyValue(propUrn: Cite2Urn): Any

    Value for a single property value.

    Value for a single property value. It is a CiteObjectException if propUrn does not identify exactly 1 property value.

    propUrn

    URN identifying a CitePropertyValue

  21. def size: Int

    Number of property vaues in the collection.

  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  26. def ~~(filterUrn: Cite2Urn): CiteCollectionData

    Filter collection data by identifying URN.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped