it.unimi.dsi.fastutil.booleans
Class BooleanCollections

java.lang.Object
  extended byit.unimi.dsi.fastutil.booleans.BooleanCollections

public class BooleanCollections
extends Object

A class providing static methods and objects that do useful things with type-specific collections.

See Also:
Collections

Nested Class Summary
static class BooleanCollections.SynchronizedCollection
          A synchronized wrapper class for collections.
 
Method Summary
static BooleanCollection synchronize(BooleanCollection c)
          Returns a synchronized collection backed by the specified collection.
static BooleanCollection synchronize(BooleanCollection c, Object sync)
          Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

synchronize

public static BooleanCollection synchronize(BooleanCollection c)
Returns a synchronized collection backed by the specified collection.

Parameters:
c - the collection to be wrapped in a synchronized collection.
Returns:
a synchronized view of the specified collection.
See Also:
Collections.synchronizedCollection(Collection)

synchronize

public static BooleanCollection synchronize(BooleanCollection c,
                                            Object sync)
Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.

Parameters:
c - the collection to be wrapped in a synchronized collection.
sync - an object that will be used to synchronize the list access.
Returns:
a synchronized view of the specified collection.
See Also:
Collections.synchronizedCollection(Collection)