case class I[A](a: A) extends Identifiable[I[A]] with Product with Serializable

A wrapper class for types that are not Identifiable. This is mainly meant for basic types like Int, String, and Boolean, but can easily work for other types of classes. For example, you may need to wrap Integers into the Identifiable class to work for BigGlue, so we use I[Int]s. With this class, the Identity of the class is simply what the string representation of that object is.

A

The type of the value wrapped within the identifiable.

a

The actual value wrapped within the identifiable.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. I
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Identifiable
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new I(a: A)

    a

    The actual value wrapped within the identifiable.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from I[A] to any2stringadd[I[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (I[A], B)
    Implicit
    This member is added by an implicit conversion from I[A] to ArrowAssoc[I[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. val a: A
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def ensuring(cond: (I[A]) ⇒ Boolean, msg: ⇒ Any): I[A]
    Implicit
    This member is added by an implicit conversion from I[A] to Ensuring[I[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (I[A]) ⇒ Boolean): I[A]
    Implicit
    This member is added by an implicit conversion from I[A] to Ensuring[I[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): I[A]
    Implicit
    This member is added by an implicit conversion from I[A] to Ensuring[I[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): I[A]
    Implicit
    This member is added by an implicit conversion from I[A] to Ensuring[I[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from I[A] to StringFormat[I[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def getId(): String

    Gets the Id from the identity.

    Gets the Id from the identity.

    returns

    The Identifiable's name.

    Definition Classes
    Identifiable
  18. def getProvenance(): Option[Provenance]

    returns

    Get the Provenance information. If there is no provenance, we return nothing.

    Definition Classes
    Identifiable
  19. def getVersion(): Option[String]

    Gets the Version from the identity

    Gets the Version from the identity

    returns

    The Identifiable's version.

    Definition Classes
    Identifiable
  20. def i(): A
  21. def identity(): Identity[I[A]]

    Gets the Identity/name of the object.

    Gets the Identity/name of the object.

    returns

    The Identity of the object/

    Definition Classes
    Identifiable
  22. var identityOpt: Option[Identity[I[A]]]
    Definition Classes
    Identifiable
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def mkIdentity(): Identity[I[A]]

    When creating an Identifiable, you will have to specify an Identity for that Identifiable.

    When creating an Identifiable, you will have to specify an Identity for that Identifiable. This can be seen in the example within all of the data types, whose Identity is simply a BasicIdentity that consists of the word sum.

    returns

    The Identity of the Identifiable.

    Definition Classes
    IIdentifiable
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  28. var provenanceOpt: Option[Provenance]
    Definition Classes
    Identifiable
  29. def setProvenance(prov: Provenance): Unit

    Creates a new Provenance information.

    Creates a new Provenance information.

    prov

    The provenance that we are adding to the Identifiable.

    Definition Classes
    Identifiable
  30. def setVersion(version: String): Unit

    Creates a new Identity from the version and then sets that identity as it's identity.

    Creates a new Identity from the version and then sets that identity as it's identity.

    version

    The version that we are appending.

    Definition Classes
    Identifiable
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    I → AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def [B](y: B): (I[A], B)
    Implicit
    This member is added by an implicit conversion from I[A] to ArrowAssoc[I[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Identifiable[I[A]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from I[A] to any2stringadd[I[A]]

Inherited by implicit conversion StringFormat from I[A] to StringFormat[I[A]]

Inherited by implicit conversion Ensuring from I[A] to Ensuring[I[A]]

Inherited by implicit conversion ArrowAssoc from I[A] to ArrowAssoc[I[A]]

Ungrouped