Uses of Interface
it.unimi.dsi.fastutil.booleans.BooleanSet

Packages that use BooleanSet
it.unimi.dsi.fastutil.booleans Provides type-specific classes for boolean elements or keys. 
 

Uses of BooleanSet in it.unimi.dsi.fastutil.booleans
 

Classes in it.unimi.dsi.fastutil.booleans that implement BooleanSet
 class AbstractBooleanSet
          An abstract class providing basic methods for sets implementing a type-specific interface.
 class BooleanArraySet
          A simple, brute-force implementation of a set based on a backing array.
 class BooleanOpenHashSet
          A type-specific hash set with with a fast, small-footprint implementation.
static class BooleanSets.EmptySet
          An immutable class representing the empty set and implementing a type-specific set interface.
static class BooleanSets.Singleton
          An immutable class representing a type-specific singleton set.
static class BooleanSets.SynchronizedSet
          A synchronized wrapper class for sets.
static class BooleanSets.UnmodifiableSet
          An unmodifiable wrapper class for sets.
 

Methods in it.unimi.dsi.fastutil.booleans that return BooleanSet
static BooleanSet BooleanSets.singleton(boolean element)
          Returns a type-specific immutable set containing only the specified element.
static BooleanSet BooleanSets.singleton(Boolean element)
          Returns a type-specific immutable set containing only the specified element.
static BooleanSet BooleanSets.synchronize(BooleanSet s)
          Returns a synchronized type-specific set backed by the given type-specific set.
static BooleanSet BooleanSets.synchronize(BooleanSet s, Object sync)
          Returns a synchronized type-specific set backed by the given type-specific set, using an assigned object to synchronize.
static BooleanSet BooleanSets.unmodifiable(BooleanSet s)
          Returns an unmodifiable type-specific set backed by the given type-specific set.
 

Methods in it.unimi.dsi.fastutil.booleans with parameters of type BooleanSet
static BooleanSet BooleanSets.synchronize(BooleanSet s)
          Returns a synchronized type-specific set backed by the given type-specific set.
static BooleanSet BooleanSets.synchronize(BooleanSet s, Object sync)
          Returns a synchronized type-specific set backed by the given type-specific set, using an assigned object to synchronize.
static BooleanSet BooleanSets.unmodifiable(BooleanSet s)
          Returns an unmodifiable type-specific set backed by the given type-specific set.
 

Constructors in it.unimi.dsi.fastutil.booleans with parameters of type BooleanSet
BooleanSets.SynchronizedSet(BooleanSet s)
           
BooleanSets.SynchronizedSet(BooleanSet s, Object sync)
           
BooleanSets.UnmodifiableSet(BooleanSet s)
           
 



Copyright © 2011. All Rights Reserved.