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
static
<E> ImmutableSortedSet<E>
ImmutableSortedSet.copyOf(java.util.Comparator<? super E> comparator, java.lang.Iterable<? extends E> elements)
          Returns an immutable sorted set containing the given elements sorted by the provided 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.
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 extends java.lang.Comparable>
ImmutableSortedSet<E>
ImmutableSortedSet.of()
          Returns the empty immutable sorted set.
static
<E> ImmutableSortedSet<E>
ImmutableSortedSet.of(java.util.Comparator<? super E> comparator, E... elements)
          Returns an immutable sorted set containing the given elements sorted by the provided 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.
 ImmutableSortedSet<E> ImmutableSortedSet.subSet(E fromElement, E toElement)
          
 ImmutableSortedSet<E> ImmutableSortedSet.tailSet(E fromElement)
          
 



Copyright © 2008 Google. All Rights Reserved.