All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xtdb.arrow.ValueWriter.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0-beta4
Show newest version
package xtdb.arrow

import java.nio.ByteBuffer

interface ValueWriter {
    fun writeNull()
    fun writeBoolean(v: Boolean)
    fun writeByte(v: Byte)
    fun writeShort(v: Short)
    fun writeInt(v: Int)
    fun writeLong(v: Long)
    fun writeFloat(v: Float)
    fun writeDouble(v: Double)
    fun writeBytes(v: ByteBuffer)
    fun writeObject(obj: Any?)

    fun legWriter(leg: String): ValueWriter
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy