Uses of Interface
it.unimi.dsi.fastutil.bytes.ByteHash.Strategy

Packages that use ByteHash.Strategy
it.unimi.dsi.fastutil.bytes Provides type-specific classes for byte elements or keys. 
 

Uses of ByteHash.Strategy in it.unimi.dsi.fastutil.bytes
 

Fields in it.unimi.dsi.fastutil.bytes declared as ByteHash.Strategy
protected  ByteHash.Strategy ByteLinkedOpenCustomHashSet.strategy
          The hash strategy of this custom set.
protected  ByteHash.Strategy ByteOpenCustomHashSet.strategy
          The hash strategy of this custom set.
 

Methods in it.unimi.dsi.fastutil.bytes that return ByteHash.Strategy
 ByteHash.Strategy ByteLinkedOpenCustomHashSet.strategy()
          Returns the hashing strategy.
 ByteHash.Strategy ByteOpenCustomHashSet.strategy()
          Returns the hashing strategy.
 

Constructors in it.unimi.dsi.fastutil.bytes with parameters of type ByteHash.Strategy
ByteLinkedOpenCustomHashSet(byte[] a, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
ByteLinkedOpenCustomHashSet(byte[] a, float f, ByteHash.Strategy strategy)
          Creates a new hash set copying the elements of an array.
ByteLinkedOpenCustomHashSet(byte[] a, int offset, int length, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
ByteLinkedOpenCustomHashSet(byte[] a, int offset, int length, float f, ByteHash.Strategy strategy)
          Creates a new hash set and fills it with the elements of a given array.
ByteLinkedOpenCustomHashSet(ByteCollection c, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteLinkedOpenCustomHashSet(ByteCollection c, float f, ByteHash.Strategy strategy)
          Creates a new hash set copying a given type-specific collection.
ByteLinkedOpenCustomHashSet(ByteHash.Strategy strategy)
          Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteLinkedOpenCustomHashSet(ByteIterator i, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteLinkedOpenCustomHashSet(ByteIterator i, float f, ByteHash.Strategy strategy)
          Creates a new hash set using elements provided by a type-specific iterator.
ByteLinkedOpenCustomHashSet(Collection<? extends Byte> c, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
ByteLinkedOpenCustomHashSet(Collection<? extends Byte> c, float f, ByteHash.Strategy strategy)
          Creates a new hash set copying a given collection.
ByteLinkedOpenCustomHashSet(int expected, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteLinkedOpenCustomHashSet(int expected, float f, ByteHash.Strategy strategy)
          Creates a new hash set.
ByteLinkedOpenCustomHashSet(Iterator<?> i, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
ByteLinkedOpenCustomHashSet(Iterator<?> i, float f, ByteHash.Strategy strategy)
          Creates a new hash set using elements provided by an iterator.
ByteOpenCustomHashSet(byte[] a, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
ByteOpenCustomHashSet(byte[] a, float f, ByteHash.Strategy strategy)
          Creates a new hash set copying the elements of an array.
ByteOpenCustomHashSet(byte[] a, int offset, int length, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
ByteOpenCustomHashSet(byte[] a, int offset, int length, float f, ByteHash.Strategy strategy)
          Creates a new hash set and fills it with the elements of a given array.
ByteOpenCustomHashSet(ByteCollection c, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteOpenCustomHashSet(ByteCollection c, float f, ByteHash.Strategy strategy)
          Creates a new hash set copying a given type-specific collection.
ByteOpenCustomHashSet(ByteHash.Strategy strategy)
          Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteOpenCustomHashSet(ByteIterator i, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteOpenCustomHashSet(ByteIterator i, float f, ByteHash.Strategy strategy)
          Creates a new hash set using elements provided by a type-specific iterator.
ByteOpenCustomHashSet(Collection<? extends Byte> c, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
ByteOpenCustomHashSet(Collection<? extends Byte> c, float f, ByteHash.Strategy strategy)
          Creates a new hash set copying a given collection.
ByteOpenCustomHashSet(int expected, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteOpenCustomHashSet(int expected, float f, ByteHash.Strategy strategy)
          Creates a new hash set.
ByteOpenCustomHashSet(Iterator<?> i, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
ByteOpenCustomHashSet(Iterator<?> i, float f, ByteHash.Strategy strategy)
          Creates a new hash set using elements provided by an iterator.
 



Copyright © 2011. All Rights Reserved.