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 TConfigurationServiceImpl. getSetting(String name, ConfigurationService.Converter<T> converter)<T> @PolyNull TConfigurationServiceImpl. 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. BOOLEANstatic ConfigurationService.Converter<Integer>StandardConverters. INTEGERstatic ConfigurationService.Converter<String>StandardConverters. STRINGMethods in org.hibernate.engine.config.spi with parameters of type ConfigurationService.Converter Modifier and Type Method Description <T> @Nullable TConfigurationService. getSetting(String name, ConfigurationService.Converter<T> converter)Get the named setting, using the specified converter.<T> @PolyNull TConfigurationService. getSetting(String name, ConfigurationService.Converter<T> converter, @PolyNull T defaultValue)Get the named setting, using the specified converter and default value.
-