xtdb.arrow.ValueWriter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtdb-core Show documentation
Show all versions of xtdb-core Show documentation
An open source document database with bitemporal graph queries
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