xtdb.arrow.ValueReader.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
The newest version!
package xtdb.arrow
import java.nio.ByteBuffer
interface ValueReader {
val leg: String? get() = unsupported("leg")
val isNull: Boolean get() = unsupported("isNull")
fun readBoolean(): Boolean = unsupported("readBoolean")
fun readByte(): Byte = unsupported("readByte")
fun readShort(): Short = unsupported("readShort")
fun readInt(): Int = unsupported("readInt")
fun readLong(): Long = unsupported("readLong")
fun readFloat(): Float = unsupported("readFloat")
fun readDouble(): Double = unsupported("readDouble")
fun readBytes(): ByteBuffer = unsupported("readBytes")
fun readObject(): Any? = unsupported("readObject")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy