Uses of Class
com.google.common.collect.ImmutableSortedSet

Packages that use ImmutableSortedSet
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of ImmutableSortedSet in com.google.common.collect
 

Methods in com.google.common.collect that return ImmutableSortedSet
 ImmutableSortedSet<E> ImmutableSortedSet.Factory.copyOf(java.lang.Iterable<? extends E> elements)
          Returns an immutable sorted set containing the given elements sorted by the factory's comparator.
static
<E extends java.lang.Comparable>
ImmutableSortedSet<E>
ImmutableSortedSet.copyOf(java.lang.Iterable<? extends E> elements)
          Returns an immutable sorted set containing the given elements sorted by their natural ordering.
 ImmutableSortedSet<E> ImmutableSortedSet.Factory.copyOf(java.util.Iterator<? extends E> elements)
          Returns an immutable sorted set containing the given elements sorted by the factory's comparator.
static
<E extends java.lang.Comparable>
ImmutableSortedSet<E>
ImmutableSortedSet.copyOf(java.util.Iterator<? extends E> elements)
          Returns an immutable sorted set containing the given elements sorted by their natural ordering.
static
<E> ImmutableSortedSet<E>
ImmutableSortedSet.copyOfSorted(java.util.SortedSet<E> sortedSet)
          Returns an immutable sorted set containing the elements of a sorted set, sorted by the same Comparator.
 ImmutableSortedSet<E> ImmutableSortedSet.headSet(E toElement)
          
static
<E> ImmutableSortedSet<E>
ImmutableSortedSet.of()
          Returns the empty immutable sorted set.
 ImmutableSortedSet<E> ImmutableSortedSet.Factory.of(E... elements)
          Returns an immutable sorted set containing the given elements sorted by the factory's comparator.
static
<E extends java.lang.Comparable>
ImmutableSortedSet<E>
ImmutableSortedSet.of(E... elements)
          Returns an immutable sorted set containing the given elements sorted by their natural ordering.
static
<E extends java.lang.Comparable>
ImmutableSortedSet<E>
ImmutableSortedSet.of(E element)
          Returns an immutable sorted set containing a single element.
 ImmutableSortedSet<E> ImmutableSortedSet.subSet(E fromElement, E toElement)
          
 ImmutableSortedSet<E> ImmutableSortedSet.tailSet(E fromElement)
          
 



Copyright © 2007-2008 Google. All Rights Reserved.