Uses of Interface
org.ehcache.config.Builder
-
Packages that use Builder Package Description org.ehcache Main Ehcache API, includingcache managersandcaches.org.ehcache.config CacheManager configuration,Cache configurationand other configuration classes. -
-
Uses of Builder in org.ehcache
Methods in org.ehcache with parameters of type Builder Modifier and Type Method Description <K,V>
Cache<K,V>CacheManager. createCache(java.lang.String alias, Builder<? extends CacheConfiguration<K,V>> configBuilder)Creates aCachein thisCacheManageraccording to the specifiedCacheConfigurationprovided through aBuilder. -
Uses of Builder in org.ehcache.config
Subinterfaces of Builder in org.ehcache.config Modifier and Type Interface Description interfaceFluentCacheConfigurationBuilder<K,V,B extends FluentCacheConfigurationBuilder<K,V,?>>A fluent builder ofCacheConfigurationinstances.interfaceFluentConfigurationBuilder<B extends FluentConfigurationBuilder<?>>A fluent builder ofConfigurationinstances.Methods in org.ehcache.config with parameters of type Builder Modifier and Type Method Description default BFluentConfigurationBuilder. withCache(java.lang.String alias, Builder<? extends CacheConfiguration<?,?>> builder)Adds the cache configuration built by a builder to this configuration.default BFluentCacheConfigurationBuilder. withResourcePools(Builder<? extends ResourcePools> builder)Convenience method to set theResourcePoolsthrough aBuilder.default BFluentCacheConfigurationBuilder. withService(Builder<? extends ServiceConfiguration<?,?>> builder)Adds a service configuration built by the given builder to this configuration.default BFluentConfigurationBuilder. withService(Builder<? extends ServiceCreationConfiguration<?,?>> builder)Adds a service creation configuration built by the given builder to this configuration.
-