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

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> 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 given Comparator.
static
<E> ImmutableSortedSet<E>
ImmutableSortedSet.copyOf(java.util.Comparator<? super E> comparator, java.util.Iterator<? extends E> elements)
          Returns an immutable sorted set containing the given elements sorted by the given Comparator.
static
<E extends java.lang.Comparable<? super E>>
ImmutableSortedSet<E>
ImmutableSortedSet.copyOf(E[] elements)
          Returns an immutable sorted set containing the given elements sorted by their natural ordering.
static
<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> 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)
          
 ImmutableSortedSet<K> ImmutableSortedMap.keySet()
          Returns an immutable sorted set of the keys in this map.
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 element)
          Returns an immutable sorted set containing a single element.
static
<E extends java.lang.Comparable<? super E>>
ImmutableSortedSet<E>
ImmutableSortedSet.of(E[] elements)
          Deprecated. use copyOf(Comparable[]).
static
<E extends java.lang.Comparable<? super E>>
ImmutableSortedSet<E>
ImmutableSortedSet.of(E e1, E e2)
          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 e1, E e2, E e3)
          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 e1, E e2, E e3, E e4)
          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 e1, E e2, E e3, E e4, E e5)
          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 e1, E e2, E e3, E e4, E e5, E e6, E... remaining)
          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)
          
static
<E> ImmutableSortedSet<E>
ImmutableSortedSet.withExplicitOrder(E firstElement, E... remainingElementsInOrder)
          Returns an immutable sorted set containing the provided elements in the same order.
static
<E> ImmutableSortedSet<E>
ImmutableSortedSet.withExplicitOrder(java.util.List<E> elements)
          Returns an immutable sorted set containing the elements in the given list in the same order.
 



Copyright © 2010 Google. All Rights Reserved.