Uses of Interface
org.dishevelled.weighted.WeightedMap

Uses of WeightedMap in org.dishevelled.weighted
 

Classes in org.dishevelled.weighted that implement WeightedMap
 class HashWeightedMap<E>
          Implementation of WeightedMap that delegates to a HashMap.
 

Methods in org.dishevelled.weighted that return WeightedMap
static
<E> WeightedMap<E>
WeightedMaps.createWeightedMap()
          Create and return a new weighted map with the default initial capacity and load factor.
static
<E> WeightedMap<E>
WeightedMaps.createWeightedMap(int initialCapacity)
          Create and return new weighted map with the specified initial capacity and default load factor.
static
<E> WeightedMap<E>
WeightedMaps.createWeightedMap(int initialCapacity, float loadFactor)
          Create and return new weighted map with the specified initial capacity and load factor.
static
<E> WeightedMap<E>
WeightedMaps.createWeightedMap(WeightedMap<? extends E> weightedMap)
          Create and return a new weighted map with the elements and weights in the specified weighted map.
 

Methods in org.dishevelled.weighted with parameters of type WeightedMap
static
<E> WeightedMap<E>
WeightedMaps.createWeightedMap(WeightedMap<? extends E> weightedMap)
          Create and return a new weighted map with the elements and weights in the specified weighted map.
 

Constructors in org.dishevelled.weighted with parameters of type WeightedMap
HashWeightedMap(WeightedMap<? extends E> weightedMap)
          Create a new weighted map with the elements and weights in the specified weighted map (copy constructor).
 



Copyright © 2005-2012 dishevelled.org. All Rights Reserved.