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 writeBigDecimal(bigDecimal: BigDecimal): Unit

    Value written MUST NOT be null

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

    Value written MUST NOT be null

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

    Value written MUST NOT be null

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

    Value written MUST NOT be null

Concrete Value Members

  1. def writeByte(byte: Byte): Unit
  2. def writeChar(char: Char): Unit
  3. def writeFloat(float: Float): Unit
  4. def writeShort(short: Short): Unit
  5. def writeTimestamp(millis: Long): Unit