FixedSizeSetFactoryImplpublic interface FixedSizeSetFactory
| Modifier and Type | Method | Description |
|---|---|---|
<T> FixedSizeSet<T> |
empty() |
|
<T> FixedSizeSet<T> |
of() |
Same as
empty(). |
<T> FixedSizeSet<T> |
of(T one) |
Same as
with(Object). |
<T> FixedSizeSet<T> |
of(T one,
T two) |
Same as
with(Object, Object). |
<T> FixedSizeSet<T> |
of(T one,
T two,
T three) |
Same as
with(Object, Object, Object). |
<T> FixedSizeSet<T> |
of(T one,
T two,
T three,
T four) |
Same as
with(Object, Object, Object, Object). |
<T> MutableSet<T> |
ofAll(Iterable<? extends T> items) |
Same as
withAll(Iterable). |
<T> FixedSizeSet<T> |
with() |
Same as
empty(). |
<T> FixedSizeSet<T> |
with(T one) |
|
<T> FixedSizeSet<T> |
with(T one,
T two) |
|
<T> FixedSizeSet<T> |
with(T one,
T two,
T three) |
|
<T> FixedSizeSet<T> |
with(T one,
T two,
T three,
T four) |
|
<T> MutableSet<T> |
withAll(Iterable<? extends T> items) |
<T> FixedSizeSet<T> empty()
<T> FixedSizeSet<T> of()
empty().<T> FixedSizeSet<T> with()
empty().<T> FixedSizeSet<T> of(T one)
with(Object).<T> FixedSizeSet<T> with(T one)
<T> FixedSizeSet<T> of(T one, T two)
with(Object, Object).<T> FixedSizeSet<T> with(T one, T two)
<T> FixedSizeSet<T> of(T one, T two, T three)
with(Object, Object, Object).<T> FixedSizeSet<T> with(T one, T two, T three)
<T> FixedSizeSet<T> of(T one, T two, T three, T four)
with(Object, Object, Object, Object).<T> FixedSizeSet<T> with(T one, T two, T three, T four)
<T> MutableSet<T> ofAll(Iterable<? extends T> items)
withAll(Iterable).<T> MutableSet<T> withAll(Iterable<? extends T> items)
Copyright © 2004–2017. All rights reserved.