Package com.yandex.ydb.table.result
Interface PrimitiveReader
-
- All Known Subinterfaces:
ValueReader
public interface PrimitiveReader- Author:
- Sergey Polovko
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleangetBool()LocalDategetDate()LocalDateTimegetDatetime()DecimalValuegetDecimal()floatgetFloat32()doublegetFloat64()shortgetInt16()intgetInt32()longgetInt64()bytegetInt8()DurationgetInterval()StringgetJson()StringgetJsonDocument()byte[]getString()default StringgetString(Charset charset)InstantgetTimestamp()ZonedDateTimegetTzDate()ZonedDateTimegetTzDatetime()ZonedDateTimegetTzTimestamp()intgetUint16()longgetUint32()longgetUint64()intgetUint8()StringgetUtf8()UUIDgetUuid()byte[]getYson()
-
-
-
Method Detail
-
getBool
boolean getBool()
-
getInt8
byte getInt8()
-
getUint8
int getUint8()
-
getInt16
short getInt16()
-
getUint16
int getUint16()
-
getInt32
int getInt32()
-
getUint32
long getUint32()
-
getInt64
long getInt64()
-
getUint64
long getUint64()
-
getFloat32
float getFloat32()
-
getFloat64
double getFloat64()
-
getDate
LocalDate getDate()
-
getDatetime
LocalDateTime getDatetime()
-
getTimestamp
Instant getTimestamp()
-
getInterval
Duration getInterval()
-
getTzDate
ZonedDateTime getTzDate()
-
getTzDatetime
ZonedDateTime getTzDatetime()
-
getTzTimestamp
ZonedDateTime getTzTimestamp()
-
getString
byte[] getString()
-
getUuid
UUID getUuid()
-
getUtf8
String getUtf8()
-
getYson
byte[] getYson()
-
getJson
String getJson()
-
getJsonDocument
String getJsonDocument()
-
getDecimal
DecimalValue getDecimal()
-
-