|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.google.common.collect.ImmutableSet.Builder<E> com.google.common.collect.ImmutableSortedSet.Builder<E>
public static final class ImmutableSortedSet.Builder<E>
A builder for creating immutable sorted set instances, especially
public static final
sets ("constant sets"), with a given
comparator.
Example:
public static final ImmutableSortedSet<Number> LUCKY_NUMBERS
= new ImmutableSortedSet.Builder<Number>(ODDS_FIRST_COMPARATOR)
.addAll(SINGLE_DIGIT_PRIMES)
.add(42)
.build();
Builder instances can be reused - it is safe to call build()
multiple times to build multiple sets in series. Each set
is a superset of the set created before it.
Constructor Summary | |
---|---|
ImmutableSortedSet.Builder(Comparator<? super E> comparator)
Creates a new builder. |
Method Summary | |
---|---|
ImmutableSortedSet.Builder<E> |
add(E... elements)
Adds each element of elements to the ImmutableSortedSet ,
ignoring duplicate elements (only the first duplicate element is added). |
ImmutableSortedSet.Builder<E> |
add(E element)
Adds element to the ImmutableSortedSet . |
ImmutableSortedSet.Builder<E> |
addAll(Iterable<? extends E> elements)
Adds each element of elements to the ImmutableSortedSet ,
ignoring duplicate elements (only the first duplicate element is added). |
ImmutableSortedSet.Builder<E> |
addAll(Iterator<? extends E> elements)
Adds each element of elements to the ImmutableSortedSet ,
ignoring duplicate elements (only the first duplicate element is added). |
ImmutableSortedSet<E> |
build()
Returns a newly-created ImmutableSortedSet based on the contents
of the Builder and its comparator. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ImmutableSortedSet.Builder(Comparator<? super E> comparator)
ImmutableSortedSet.orderedBy(java.util.Comparator)
.
Method Detail |
---|
public ImmutableSortedSet.Builder<E> add(E element)
element
to the ImmutableSortedSet
. If the
ImmutableSortedSet
already contains element
, then
add
has no effect. (only the previously added element
is retained).
add
in class ImmutableSet.Builder<E>
element
- the element to add
Builder
object
NullPointerException
- if element
is nullpublic ImmutableSortedSet.Builder<E> add(E... elements)
elements
to the ImmutableSortedSet
,
ignoring duplicate elements (only the first duplicate element is added).
add
in class ImmutableSet.Builder<E>
elements
- the elements to add
Builder
object
NullPointerException
- if elements
contains a null elementpublic ImmutableSortedSet.Builder<E> addAll(Iterable<? extends E> elements)
elements
to the ImmutableSortedSet
,
ignoring duplicate elements (only the first duplicate element is added).
addAll
in class ImmutableSet.Builder<E>
elements
- the elements to add to the ImmutableSortedSet
Builder
object
NullPointerException
- if elements
contains a null elementpublic ImmutableSortedSet.Builder<E> addAll(Iterator<? extends E> elements)
elements
to the ImmutableSortedSet
,
ignoring duplicate elements (only the first duplicate element is added).
addAll
in class ImmutableSet.Builder<E>
elements
- the elements to add to the ImmutableSortedSet
Builder
object
NullPointerException
- if elements
contains a null elementpublic ImmutableSortedSet<E> build()
ImmutableSortedSet
based on the contents
of the Builder
and its comparator.
build
in class ImmutableSet.Builder<E>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |