it.unimi.dsi.fastutil.shorts
Class ShortCollections

java.lang.Object
  extended by it.unimi.dsi.fastutil.shorts.ShortCollections

public class ShortCollections
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 ShortCollections.EmptyCollection
          An immutable class representing an empty type-specific collection.
static class ShortCollections.IterableCollection
          A collection wrapper class for iterables.
static class ShortCollections.SynchronizedCollection
          A synchronized wrapper class for collections.
static class ShortCollections.UnmodifiableCollection
          An unmodifiable wrapper class for collections.
 
Method Summary
static ShortCollection asCollection(ShortIterable iterable)
          Returns an unmodifiable collection backed by the specified iterable.
static ShortCollection synchronize(ShortCollection c)
          Returns a synchronized collection backed by the specified collection.
static ShortCollection synchronize(ShortCollection c, Object sync)
          Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.
static ShortCollection unmodifiable(ShortCollection c)
          Returns an unmodifiable collection backed by the specified collection.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

synchronize

public static ShortCollection synchronize(ShortCollection 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 ShortCollection synchronize(ShortCollection 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)

unmodifiable

public static ShortCollection unmodifiable(ShortCollection c)
Returns an unmodifiable collection backed by the specified collection.

Parameters:
c - the collection to be wrapped in an unmodifiable collection.
Returns:
an unmodifiable view of the specified collection.
See Also:
Collections.unmodifiableCollection(Collection)

asCollection

public static ShortCollection asCollection(ShortIterable iterable)
Returns an unmodifiable collection backed by the specified iterable.

Parameters:
iterable - the iterable object to be wrapped in an unmodifiable collection.
Returns:
an unmodifiable collection view of the specified iterable.


Copyright © 2011. All Rights Reserved.