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()
java.nio.charset.Charset
getCharset()
java.text.DecimalFormat
getCurrencyFormatter()
java.util.Map<java.lang.String,java.lang.Class<?>>
getCustomTypeMap()
DateTimeFormat
getDateFormat()
java.text.DecimalFormat
getDecimalFormatter()
java.text.NumberFormat
getIntegerFormatter()
ServerConnection.KeyData
getKeyData()
Registry
getRegistry()
RequestExecutor
getRequestExecutor()
ServerInfo
getServerInfo()
DateTimeFormat
getTimeFormat()
DateTimeFormat
getTimestampFormat()
java.util.TimeZone
getTimeZone()
java.time.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
java.util.TimeZone getTimeZone()
-
getTimeZoneId
java.time.ZoneId getTimeZoneId()
-
getCharset
java.nio.charset.Charset getCharset()
-
getServerInfo
ServerInfo getServerInfo()
-
getKeyData
ServerConnection.KeyData getKeyData()
-
getIntegerFormatter
java.text.NumberFormat getIntegerFormatter()
-
getDecimalFormatter
java.text.DecimalFormat getDecimalFormatter()
-
getCurrencyFormatter
java.text.DecimalFormat getCurrencyFormatter()
-
getDateFormat
DateTimeFormat getDateFormat()
-
getTimeFormat
DateTimeFormat getTimeFormat()
-
getTimestampFormat
DateTimeFormat getTimestampFormat()
-
getCustomTypeMap
java.util.Map<java.lang.String,java.lang.Class<?>> getCustomTypeMap()
-
unwrap
Context unwrap()
-
-