Packages

  • package root
    Definition Classes
    root
  • package de
    Definition Classes
    root
  • package sciss

    The interfaces are grouped into the following packages:

    Welcome to the Mellite API documentation.

    The interfaces are grouped into the following packages:

    The Lucre transactional object model:

    • de.sciss.lucre.stm is the base package for transactions, with things like Obj, Txn, Sys, and Cursor
    • de.sciss.lucre.artifact is the base package for file system artifacts, with classes Artifact and ArtifactLocation
    • de.sciss.lucre.expr is the base package for expression types such as IntObj, DoubleObj, etc.

    Other useful packages:

    • de.sciss.synth.io for reading and writing audio files
    • de.sciss.osc for general Open Sound Control interfaces
    Definition Classes
    de
  • package lucre
    Definition Classes
    sciss
  • object Expr
    Definition Classes
    lucre
  • Const
  • Program
  • Type

trait Type[A1, Repr[~ <: Txn[~]] <: Expr[~, A1]] extends Obj.Type

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Type
  2. Type
  3. Type
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type A = A1
  2. type Const[T <: Txn[T]] = Repr[T] with Expr.Const[T, A]
  3. type E[T <: Txn[T]] = Repr[T]
  4. type Program[T <: Txn[T]] = Repr[T] with Expr.Program[T, A]
  5. type Var[T <: Txn[T]] = Repr[T] with lucre.Var[T, Repr[T]]

Abstract Value Members

  1. abstract def defaultValue: A

    A value that can be used to initialize objects, as a temporary value, etc.

    A value that can be used to initialize objects, as a temporary value, etc. If the valueFormat supports null, it may also be null. It should not be used for any semantic purposes.

  2. implicit abstract def format[T <: Txn[T]]: TFormat[T, Repr[T]]
  3. implicit abstract def newConst[T <: Txn[T]](value: A)(implicit tx: T): Const[T]
  4. abstract def newProgram[T <: Txn[T]](ex: Ex[A])(implicit tx: T): Program[T]
  5. abstract def newVar[T <: Txn[T]](init: Repr[T])(implicit tx: T): Var[T]
  6. implicit abstract def programFormat[T <: Txn[T]]: TFormat[T, Program[T]]
  7. abstract def read[T <: Txn[T]](in: DataInput)(implicit tx: T): Repr[T]
  8. abstract def readConst[T <: Txn[T]](in: DataInput)(implicit tx: T): Const[T]
  9. abstract def readIdentifiedObj[T <: Txn[T]](in: DataInput)(implicit tx: T): Obj[T]
    Definition Classes
    TypeType
  10. abstract def readProgram[T <: Txn[T]](in: DataInput)(implicit tx: T): Program[T]
  11. abstract def readVar[T <: Txn[T]](in: DataInput)(implicit tx: T): Var[T]
  12. abstract def tryParse(value: scala.Any): Option[A]
  13. abstract def typeId: Int
    Definition Classes
    Type
  14. implicit abstract def valueFormat: ConstFormat[A]
  15. abstract def valueName: String

    A human readable string representing the expression's element type.

  16. implicit abstract def varFormat[T <: Txn[T]]: TFormat[T, Var[T]]

Concrete Value Members

  1. final def !=(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def init(): Unit
    Definition Classes
    TypeType
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def readObj[T <: Txn[T]](in: DataInput)(implicit tx: T): Obj[T]
    Definition Classes
    TypeType
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. object Program
  22. object Var

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Obj.Type

Inherited from Elem.Type

Inherited from AnyRef

Inherited from scala.Any

Ungrouped