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()java.nio.charset.CharsetgetCharset()java.text.DecimalFormatgetCurrencyFormatter()java.util.Map<java.lang.String,java.lang.Class<?>>getCustomTypeMap()DateTimeFormatgetDateFormat()java.text.DecimalFormatgetDecimalFormatter()java.text.NumberFormatgetIntegerFormatter()ServerConnection.KeyDatagetKeyData()RegistrygetRegistry()RequestExecutorgetRequestExecutor()ServerInfogetServerInfo()DateTimeFormatgetTimeFormat()DateTimeFormatgetTimestampFormat()java.util.TimeZonegetTimeZone()java.time.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
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()
-
-