Package | Description |
---|---|
com.google.inject.internal.util |
Modifier and Type | Method and Description |
---|---|
ImmutableSet<E> |
ImmutableSet.Builder.build()
Returns a newly-created
ImmutableSet based on the contents of
the Builder . |
static <E> ImmutableSet<E> |
ImmutableSet.copyOf(Iterable<? extends E> elements)
Returns an immutable set containing the given elements, in order.
|
static <E> ImmutableSet<E> |
ImmutableSet.copyOf(Iterator<? extends E> elements)
Returns an immutable set containing the given elements, in order.
|
abstract ImmutableSet<Map.Entry<K,V>> |
ImmutableMap.entrySet()
Returns an immutable set of the mappings in this map.
|
abstract ImmutableSet<K> |
ImmutableMap.keySet()
Returns an immutable set of the keys in this map.
|
static <E> ImmutableSet<E> |
ImmutableSet.of()
Returns the empty immutable set.
|
static <E> ImmutableSet<E> |
ImmutableSet.of(E... elements)
Returns an immutable set containing the given elements, in order.
|
static <E> ImmutableSet<E> |
ImmutableSet.of(E element)
Returns an immutable set containing a single element.
|
Copyright © 2006-2012 Google, Inc.. All Rights Reserved.