Packages

trait SimpleOutput extends Any

Represent an abstract sink for "primitive" values, i.e. ones that can be written as a whole with a simple method call (as opposed to lists and objects). Simple values must NEVER be null. Output.writeNull must be used instead to handle null values.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleOutput
  2. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getClass(): Class[_]
    Definition Classes
    Any
  2. abstract def writeBigDecimal(bigDecimal: BigDecimal): Unit

    Value written MUST NOT be null

  3. abstract def writeBigInt(bigInt: BigInt): Unit

    Value written MUST NOT be null

  4. abstract def writeBinary(binary: Array[Byte]): Unit

    Value written MUST NOT be null

  5. abstract def writeBoolean(boolean: Boolean): Unit
  6. abstract def writeDouble(double: Double): Unit
  7. abstract def writeInt(int: Int): Unit
  8. abstract def writeLong(long: Long): Unit
  9. abstract def writeString(str: String): Unit

    Value written MUST NOT be null

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def equals(arg0: Any): Boolean
    Definition Classes
    Any
  6. def hashCode(): Int
    Definition Classes
    Any
  7. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  8. def toString(): String
    Definition Classes
    Any
  9. def writeByte(byte: Byte): Unit
  10. def writeChar(char: Char): Unit
  11. def writeFloat(float: Float): Unit
  12. def writeShort(short: Short): Unit
  13. def writeTimestamp(millis: Long): Unit

Inherited from Any

Ungrouped