Package com.impossibl.postgres.system
Interface Context
-
- All Superinterfaces:
Configuration
- All Known Implementing Classes:
AbstractContext
,BasicContext
,PGDirectConnection
,SettingsContext
,TypeMapContext
public interface Context extends Configuration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description io.netty.buffer.ByteBufAllocator
getAllocator()
Charset
getCharset()
NumberFormat
getClientCurrencyFormatter()
DateTimeFormat
getClientDateFormat()
NumberFormat
getClientDecimalFormatter()
NumberFormat
getClientIntegerFormatter()
IntervalFormat
getClientIntervalFormat()
DateTimeFormat
getClientTimeFormat()
DateTimeFormat
getClientTimestampFormat()
Map<String,Class<?>>
getCustomTypeMap()
ServerConnection.KeyData
getKeyData()
Registry
getRegistry()
RequestExecutor
getRequestExecutor()
NumberFormat
getServerCurrencyFormatter()
DateTimeFormat
getServerDateFormat()
ServerInfo
getServerInfo()
IntervalFormat
getServerIntervalFormat()
DateTimeFormat
getServerTimeFormat()
DateTimeFormat
getServerTimestampFormat()
TimeZone
getTimeZone()
ZoneId
getTimeZoneId()
Context
unwrap()
-
Methods inherited from interface com.impossibl.postgres.system.Configuration
getSetting, getSetting
-
-
-
-
Method Detail
-
getRequestExecutor
RequestExecutor getRequestExecutor()
-
getAllocator
io.netty.buffer.ByteBufAllocator getAllocator()
-
getRegistry
Registry getRegistry()
-
getTimeZone
TimeZone getTimeZone()
-
getTimeZoneId
ZoneId getTimeZoneId()
-
getCharset
Charset getCharset()
-
getServerInfo
ServerInfo getServerInfo()
-
getKeyData
ServerConnection.KeyData getKeyData()
-
getClientIntegerFormatter
NumberFormat getClientIntegerFormatter()
-
getClientDecimalFormatter
NumberFormat getClientDecimalFormatter()
-
getServerCurrencyFormatter
NumberFormat getServerCurrencyFormatter()
-
getClientCurrencyFormatter
NumberFormat getClientCurrencyFormatter()
-
getServerDateFormat
DateTimeFormat getServerDateFormat()
-
getClientDateFormat
DateTimeFormat getClientDateFormat()
-
getServerTimeFormat
DateTimeFormat getServerTimeFormat()
-
getClientTimeFormat
DateTimeFormat getClientTimeFormat()
-
getServerTimestampFormat
DateTimeFormat getServerTimestampFormat()
-
getClientTimestampFormat
DateTimeFormat getClientTimestampFormat()
-
getServerIntervalFormat
IntervalFormat getServerIntervalFormat()
-
getClientIntervalFormat
IntervalFormat getClientIntervalFormat()
-
unwrap
Context unwrap()
-
-