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.ByteBufAllocatorgetAllocator()CharsetgetCharset()NumberFormatgetClientCurrencyFormatter()DateTimeFormatgetClientDateFormat()NumberFormatgetClientDecimalFormatter()NumberFormatgetClientIntegerFormatter()IntervalFormatgetClientIntervalFormat()DateTimeFormatgetClientTimeFormat()DateTimeFormatgetClientTimestampFormat()Map<String,Class<?>>getCustomTypeMap()ServerConnection.KeyDatagetKeyData()RegistrygetRegistry()RequestExecutorgetRequestExecutor()NumberFormatgetServerCurrencyFormatter()DateTimeFormatgetServerDateFormat()ServerInfogetServerInfo()IntervalFormatgetServerIntervalFormat()DateTimeFormatgetServerTimeFormat()DateTimeFormatgetServerTimestampFormat()TimeZonegetTimeZone()ZoneIdgetTimeZoneId()Contextunwrap()-
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()
-
-