Uses of Class
net.openhft.koloboke.collect.hash.HashConfig

Packages that use HashConfig
net.openhft.koloboke.collect.hash Contains basic interfaces and commonly used classes related to containers, based on hash tables. 
 

Uses of HashConfig in net.openhft.koloboke.collect.hash
 

Methods in net.openhft.koloboke.collect.hash that return HashConfig
static HashConfig HashConfig.fromLoads(double minLoad, double targetLoad, double maxLoad)
          Returns a new hash config with the given loads and the grow factor set to maxLoad / minLoad.
static HashConfig HashConfig.getDefault()
          Returns a hash config with 0.(3) min load, 0.5 target load, 0.(6) max load, 2.0 grow factor and null shrink condition.
 HashConfig HashContainerFactory.getHashConfig()
          Returns the hash config, with which containers constructed by this factory are initialized.
 HashConfig HashContainer.hashConfig()
          Returns the hash config which holds all "magic" parameters of this hash container: load and growth factors.
 HashConfig HashConfig.withGrowFactor(double growFactor)
          Returns a copy of this hash config with the grow factor set to the given value.
 HashConfig HashConfig.withMaxLoad(double maxLoad)
          Returns a copy of this hash config with the max load set to the given value.
 HashConfig HashConfig.withMinLoad(double minLoad)
          Returns a copy of this hash config with the min load set to the given value.
 HashConfig HashConfig.withShrinkCondition(Predicate<HashContainer> condition)
          Returns a copy of this hash config with the shrink condition set to the given predicate.
 HashConfig HashConfig.withTargetLoad(double targetLoad)
          Returns a copy of this hash config with the target load set to the given value.
 

Methods in net.openhft.koloboke.collect.hash with parameters of type HashConfig
 F HashContainerFactory.withHashConfig(HashConfig config)
          Returns a copy of this factory with hash config set to the given one.