public class FloatHashSet extends AbstractFloatSet implements MutableFloatSet, Externalizable
| Constructor and Description |
|---|
FloatHashSet() |
FloatHashSet(float... elements) |
FloatHashSet(FloatHashSet set) |
FloatHashSet(FloatIterable elements) |
FloatHashSet(int initialCapacity) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(float element) |
boolean |
addAll(float... source) |
boolean |
addAll(FloatIterable source) |
boolean |
allSatisfy(FloatPredicate predicate) |
boolean |
anySatisfy(FloatPredicate predicate) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
MutableFloatSet |
asSynchronized() |
MutableFloatSet |
asUnmodifiable() |
RichIterable<FloatIterable> |
chunk(int size) |
void |
clear() |
<V> MutableSet<V> |
collect(FloatToObjectFunction<? extends V> function) |
<V,R extends Collection<V>> |
collect(FloatToObjectFunction<? extends V> function,
R target) |
void |
compact()
Rehashes every element in the set into a new backing table of the smallest possible size and eliminating removed sentinels.
|
boolean |
contains(float value) |
int |
count(FloatPredicate predicate) |
float |
detectIfNone(FloatPredicate predicate,
float ifNone) |
void |
each(FloatProcedure procedure) |
MutableFloatIterator |
floatIterator() |
FloatSet |
freeze() |
int |
hashCode() |
<T> T |
injectInto(T injectedValue,
ObjectFloatToObjectFunction<? super T,? extends T> function) |
float |
max() |
float |
min() |
FloatHashSet |
newEmpty()
Creates a new empty FloatHashSet.
|
static FloatHashSet |
newSet(FloatIterable source) |
static FloatHashSet |
newSetWith(float... source) |
void |
readExternal(ObjectInput in) |
FloatHashSet |
reject(FloatPredicate predicate) |
<R extends MutableFloatCollection> |
reject(FloatPredicate predicate,
R target) |
boolean |
remove(float value) |
boolean |
removeAll(float... source) |
boolean |
removeAll(FloatIterable source) |
boolean |
retainAll(float... source) |
boolean |
retainAll(FloatIterable source) |
FloatHashSet |
select(FloatPredicate predicate) |
<R extends MutableFloatCollection> |
select(FloatPredicate predicate,
R target) |
int |
size() |
double |
sum() |
float[] |
toArray() |
float[] |
toArray(float[] array) |
ImmutableFloatSet |
toImmutable() |
FloatHashSet |
with(float element) |
FloatHashSet |
withAll(FloatIterable elements) |
FloatHashSet |
without(float element) |
FloatHashSet |
withoutAll(FloatIterable elements) |
void |
writeExternal(ObjectOutput out) |
cartesianProduct, equalsasLazy, average, maxIfEmpty, median, minIfEmpty, toBag, toList, toSet, toSortedArray, toSortedList, toStringdifference, intersect, symmetricDifference, tap, unionremoveIfcartesianProduct, equals, isProperSubsetOf, isSubsetOfasLazy, average, averageIfEmpty, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, flatCollect, forEach, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, maxIfEmpty, median, medianIfEmpty, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, summaryStatistics, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListByappendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, toStringpublic FloatHashSet()
public FloatHashSet(int initialCapacity)
public FloatHashSet(float... elements)
public FloatHashSet(FloatIterable elements)
public FloatHashSet(FloatHashSet set)
public static FloatHashSet newSet(FloatIterable source)
public static FloatHashSet newSetWith(float... source)
public int hashCode()
hashCode in interface FloatSethashCode in class AbstractFloatSetpublic int size()
size in interface PrimitiveIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface PrimitiveIterablepublic boolean add(float element)
add in interface MutableFloatCollectionpublic boolean addAll(float... source)
addAll in interface MutableFloatCollectionpublic boolean addAll(FloatIterable source)
addAll in interface MutableFloatCollectionpublic boolean remove(float value)
remove in interface MutableFloatCollectionpublic boolean removeAll(FloatIterable source)
removeAll in interface MutableFloatCollectionpublic boolean removeAll(float... source)
removeAll in interface MutableFloatCollectionpublic boolean retainAll(FloatIterable source)
retainAll in interface MutableFloatCollectionpublic boolean retainAll(float... source)
retainAll in interface MutableFloatCollectionpublic void clear()
clear in interface MutableFloatCollectionpublic FloatHashSet with(float element)
with in interface MutableFloatCollectionwith in interface MutableFloatSetpublic FloatHashSet without(float element)
without in interface MutableFloatCollectionwithout in interface MutableFloatSetpublic FloatHashSet withAll(FloatIterable elements)
withAll in interface MutableFloatCollectionwithAll in interface MutableFloatSetpublic FloatHashSet withoutAll(FloatIterable elements)
withoutAll in interface MutableFloatCollectionwithoutAll in interface MutableFloatSetpublic MutableFloatSet asUnmodifiable()
asUnmodifiable in interface MutableFloatCollectionasUnmodifiable in interface MutableFloatSetpublic MutableFloatSet asSynchronized()
asSynchronized in interface MutableFloatCollectionasSynchronized in interface MutableFloatSetpublic ImmutableFloatSet toImmutable()
toImmutable in interface MutableFloatCollectiontoImmutable in interface FloatSettoImmutable in interface MutableFloatSetpublic MutableFloatIterator floatIterator()
floatIterator in interface MutableFloatCollectionfloatIterator in interface FloatIterablepublic float[] toArray()
toArray in interface FloatIterablepublic float[] toArray(float[] array)
toArray in interface FloatIterablepublic boolean contains(float value)
contains in interface FloatIterablepublic void each(FloatProcedure procedure)
each in interface FloatIterablepublic FloatHashSet select(FloatPredicate predicate)
select in interface MutableFloatCollectionselect in interface FloatIterableselect in interface FloatSetselect in interface MutableFloatSetpublic <R extends MutableFloatCollection> R select(FloatPredicate predicate, R target)
select in interface FloatIterablepublic FloatHashSet reject(FloatPredicate predicate)
reject in interface MutableFloatCollectionreject in interface FloatIterablereject in interface FloatSetreject in interface MutableFloatSetpublic <R extends MutableFloatCollection> R reject(FloatPredicate predicate, R target)
reject in interface FloatIterablepublic <V> MutableSet<V> collect(FloatToObjectFunction<? extends V> function)
collect in interface MutableFloatCollectioncollect in interface FloatIterablecollect in interface FloatSetcollect in interface MutableFloatSetpublic <V,R extends Collection<V>> R collect(FloatToObjectFunction<? extends V> function, R target)
collect in interface FloatIterablepublic float detectIfNone(FloatPredicate predicate, float ifNone)
detectIfNone in interface FloatIterablepublic int count(FloatPredicate predicate)
count in interface FloatIterablepublic boolean anySatisfy(FloatPredicate predicate)
anySatisfy in interface FloatIterablepublic boolean allSatisfy(FloatPredicate predicate)
allSatisfy in interface FloatIterablepublic double sum()
sum in interface FloatIterablepublic float max()
max in interface FloatIterablepublic float min()
min in interface FloatIterablepublic FloatSet freeze()
freeze in interface FloatSetfreeze in interface MutableFloatSetpublic void writeExternal(ObjectOutput out) throws IOException
writeExternal in interface ExternalizableIOExceptionpublic void readExternal(ObjectInput in) throws IOException
readExternal in interface ExternalizableIOExceptionpublic <T> T injectInto(T injectedValue,
ObjectFloatToObjectFunction<? super T,? extends T> function)
injectInto in interface FloatIterablepublic RichIterable<FloatIterable> chunk(int size)
chunk in interface FloatIterablepublic FloatHashSet newEmpty()
newEmpty in interface MutableFloatCollectionnewEmpty in interface MutableFloatSetpublic void compact()
Copyright © 2004–2022. All rights reserved.