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

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

Uses of SortedArraySet in com.google.common.collect
 

Methods in com.google.common.collect that return SortedArraySet
static
<E extends java.lang.Comparable>
SortedArraySet<E>
Sets.newSortedArraySet()
          Creates an empty SortedArraySet instance, with an initial capacity of zero.
static
<E> SortedArraySet<E>
Sets.newSortedArraySet(java.util.Comparator<? super E> comparator)
          Creates an empty SortedArraySet instance, with an initial capacity of zero.
static
<E> SortedArraySet<E>
Sets.newSortedArraySet(java.util.Comparator<? super E> comparator, E... elements)
          Creates a SortedArraySet instance containing the given elements.
static
<E extends java.lang.Comparable>
SortedArraySet<E>
Sets.newSortedArraySet(E... elements)
          Creates a SortedArraySet instance containing the given elements.
static
<E extends java.lang.Comparable>
SortedArraySet<E>
Sets.newSortedArraySet(java.lang.Iterable<? extends E> elements)
          Creates a SortedArraySet instance containing the given elements.
static
<E> SortedArraySet<E>
Sets.newSortedArraySet(java.lang.Iterable<? extends E> elements, java.util.Comparator<? super E> comparator)
          Creates a SortedArraySet instance containing the given elements.
 



Copyright © 2008 Google. All Rights Reserved.