Uses of Interface
org.hibernate.engine.config.spi.ConfigurationService.Converter
-
Packages that use ConfigurationService.Converter Package Description org.hibernate.engine.config.internal The built-in implementation of the configuration service.org.hibernate.engine.config.spi Defines the SPI of the configuration service. -
-
Uses of ConfigurationService.Converter in org.hibernate.engine.config.internal
Methods in org.hibernate.engine.config.internal with parameters of type ConfigurationService.Converter Modifier and Type Method Description <T> @Nullable T
ConfigurationServiceImpl. getSetting(String name, ConfigurationService.Converter<T> converter)
<T> @PolyNull T
ConfigurationServiceImpl. getSetting(String name, ConfigurationService.Converter<T> converter, @PolyNull T defaultValue)
-
Uses of ConfigurationService.Converter in org.hibernate.engine.config.spi
Fields in org.hibernate.engine.config.spi declared as ConfigurationService.Converter Modifier and Type Field Description static ConfigurationService.Converter<Boolean>
StandardConverters. BOOLEAN
static ConfigurationService.Converter<Integer>
StandardConverters. INTEGER
static ConfigurationService.Converter<String>
StandardConverters. STRING
Methods in org.hibernate.engine.config.spi with parameters of type ConfigurationService.Converter Modifier and Type Method Description <T> @Nullable T
ConfigurationService. getSetting(String name, ConfigurationService.Converter<T> converter)
Get the named setting, using the specified converter.<T> @PolyNull T
ConfigurationService. getSetting(String name, ConfigurationService.Converter<T> converter, @PolyNull T defaultValue)
Get the named setting, using the specified converter and default value.
-