Packages

trait Format extends AnyRef

CBM graphic format abstraction functioning as a base class for miscellaneous image formats providing data validation options as well as convenient access to the file loading address and data bytes.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Format
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val addr: Address

    CBM file loading address that needs to be provided by constructor of a derived class.

  2. abstract val config: Offset

    Memory configuration of the file format data that needs to be defined as a property of a derived class is used to extract image data from file data bytes.

  3. abstract val data: Array[Byte]

    Array of file data bytes that needs to be provided by constructor of a derived class.

  4. abstract val load: Address

    Default file loading address that needs to be defined as a property of a derived class is used to validate constructor parameters.

  5. abstract val size: Int

    Default length of file data bytes that needs to be defined as a property of a derived class is used to validate constructor parameters.

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def canEqual(that: Any): Boolean

    States that objects of this class are never equal to objects of its superclass.

    States that objects of this class are never equal to objects of its superclass.

    that

    the value being probed for possible equality

    returns

    true if this instance can possibly equal that, otherwise false

  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(other: Any): Boolean

    Compares the receiver object (this) with the argument object (other) for equivalence.

    Compares the receiver object (this) with the argument object (other) for equivalence.

    returns

    true if the receiver object is equivalent to the argument, false otherwise

    Definition Classes
    Format → AnyRef → Any
  9. def extractData(): CBM

    Extract image data from file data bytes.

    Extract image data from file data bytes.

    returns

    a new instance of any Mode-inherited class with the image mode determined by the file data

  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  17. def save(name: String, overwriteIfExists: Boolean = false): Unit

    Save any supported CBM image format into a file.

    Save any supported CBM image format into a file.

    name

    target file name

    overwriteIfExists

    boolean flag indicating whether overwriting of an existing file should trigger no error

  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. def validate(): Unit

    Validates consistency of an object instance data.

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

Inherited from AnyRef

Inherited from Any

Ungrouped