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.Builder.build()
          Returns a newly-created ImmutableSortedSet based on the contents of the Builder and its comparator.
static
<E extends java.lang.Comparable<? super E>>
ImmutableSortedSet<E>
ImmutableSortedSet.copyOf(java.lang.Iterable<? extends E> elements)
          Returns an immutable sorted set containing the given elements sorted by their natural ordering.
static
<E extends java.lang.Comparable<? super E>>
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.
static
<E extends java.lang.Comparable<? super E>>
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<? super E>>
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-2009 Google. All Rights Reserved.