Uses of Class
org.hibernate.cfg.Settings

Packages that use Settings
org.hibernate.cache This package defines APIs and implementations for the second-level cache and query cache. 
org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel. 
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
org.hibernate.tool.hbm2ddl The hbm2ddl tool. 
 

Uses of Settings in org.hibernate.cache
 

Methods in org.hibernate.cache with parameters of type Settings
static CacheConcurrencyStrategy CacheFactory.createCache(String concurrencyStrategy, String regionName, boolean mutable, Settings settings, Properties properties)
           
 QueryCache StandardQueryCacheFactory.getQueryCache(String regionName, UpdateTimestampsCache updateTimestampsCache, Settings settings, Properties props)
           
 QueryCache QueryCacheFactory.getQueryCache(String regionName, UpdateTimestampsCache updateTimestampsCache, Settings settings, Properties props)
           
 

Constructors in org.hibernate.cache with parameters of type Settings
StandardQueryCache(Settings settings, Properties props, UpdateTimestampsCache updateTimestampsCache, String regionName)
           
UpdateTimestampsCache(Settings settings, Properties props)
           
 

Uses of Settings in org.hibernate.cfg
 

Methods in org.hibernate.cfg that return Settings
 Settings Configuration.buildSettings()
          Create an object-oriented view of the configuration properties
 Settings SettingsFactory.buildSettings(Properties props)
           
 Settings Configuration.buildSettings(Properties props)
           
 

Uses of Settings in org.hibernate.engine
 

Methods in org.hibernate.engine that return Settings
 Settings SessionFactoryImplementor.getSettings()
           
 

Uses of Settings in org.hibernate.impl
 

Methods in org.hibernate.impl that return Settings
 Settings SessionFactoryImpl.getSettings()
           
 

Constructors in org.hibernate.impl with parameters of type Settings
SessionFactoryImpl(Configuration cfg, Mapping mapping, Settings settings, EventListeners listeners)
           
 

Uses of Settings in org.hibernate.tool.hbm2ddl
 

Constructors in org.hibernate.tool.hbm2ddl with parameters of type Settings
SchemaExport(Configuration cfg, Settings settings)
          Create a schema exporter for the given Configuration and given settings
SchemaUpdate(Configuration cfg, Settings settings)
           
SchemaValidator(Configuration cfg, Settings settings)