| Package | Description |
|---|---|
| com.helger.commons.collection | |
| com.helger.commons.collection.impl | |
| com.helger.commons.string |
| Modifier and Type | Method and Description |
|---|---|
static CommonsHashSet<Boolean> |
PrimitiveCollectionHelper.newPrimitiveSet(boolean... aValues) |
static CommonsHashSet<Boolean> |
PrimitiveCollectionHelper.newPrimitiveSet(boolean... aValues) |
static CommonsHashSet<Byte> |
PrimitiveCollectionHelper.newPrimitiveSet(byte... aValues) |
static CommonsHashSet<Byte> |
PrimitiveCollectionHelper.newPrimitiveSet(byte... aValues) |
static CommonsHashSet<Character> |
PrimitiveCollectionHelper.newPrimitiveSet(char... aValues) |
static CommonsHashSet<Character> |
PrimitiveCollectionHelper.newPrimitiveSet(char... aValues) |
static CommonsHashSet<Double> |
PrimitiveCollectionHelper.newPrimitiveSet(double... aValues) |
static CommonsHashSet<Double> |
PrimitiveCollectionHelper.newPrimitiveSet(double... aValues) |
static CommonsHashSet<Float> |
PrimitiveCollectionHelper.newPrimitiveSet(float... aValues) |
static CommonsHashSet<Float> |
PrimitiveCollectionHelper.newPrimitiveSet(float... aValues) |
static CommonsHashSet<Integer> |
PrimitiveCollectionHelper.newPrimitiveSet(int... aValues) |
static CommonsHashSet<Integer> |
PrimitiveCollectionHelper.newPrimitiveSet(int... aValues) |
static CommonsHashSet<Long> |
PrimitiveCollectionHelper.newPrimitiveSet(long... aValues) |
static CommonsHashSet<Long> |
PrimitiveCollectionHelper.newPrimitiveSet(long... aValues) |
static CommonsHashSet<Short> |
PrimitiveCollectionHelper.newPrimitiveSet(short... aValues) |
static CommonsHashSet<Short> |
PrimitiveCollectionHelper.newPrimitiveSet(short... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newSet() |
static <ELEMENTTYPE> |
CollectionHelper.newSet() |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Collection<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Collection<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Collection<? extends ELEMENTTYPE> aCollection,
Predicate<? super ELEMENTTYPE> aFilter) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Collection<? extends ELEMENTTYPE> aCollection,
Predicate<? super ELEMENTTYPE> aFilter) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(ELEMENTTYPE... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(ELEMENTTYPE... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(ELEMENTTYPE aValue) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(ELEMENTTYPE aValue) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Enumeration<? extends ELEMENTTYPE> aEnum) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Enumeration<? extends ELEMENTTYPE> aEnum) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(IIterableIterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(IIterableIterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(int nInitialCapacity) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(int nInitialCapacity) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Iterable<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Iterable<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Iterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Iterator<? extends ELEMENTTYPE> aIter) |
static <SRCTYPE,DSTTYPE> |
CollectionHelper.newSetMapped(Collection<? extends SRCTYPE> aCollection,
Function<? super SRCTYPE,DSTTYPE> aMapper) |
static <SRCTYPE,DSTTYPE> |
CollectionHelper.newSetMapped(Collection<? extends SRCTYPE> aCollection,
Function<? super SRCTYPE,DSTTYPE> aMapper) |
static <SRCTYPE,DSTTYPE> |
CollectionHelper.newSetMapped(SRCTYPE[] aArray,
Function<? super SRCTYPE,DSTTYPE> aMapper) |
static <SRCTYPE,DSTTYPE> |
CollectionHelper.newSetMapped(SRCTYPE[] aArray,
Function<? super SRCTYPE,DSTTYPE> aMapper) |
| Modifier and Type | Method and Description |
|---|---|
static <ELEMENTTYPE> |
CommonsHashSet.createFiltered(ELEMENTTYPE[] aValues,
Predicate<? super ELEMENTTYPE> aFilter)
Create a new hash set that contains a subset of the provided array.
|
static <ELEMENTTYPE> |
CommonsHashSet.createFiltered(ELEMENTTYPE[] aValues,
Predicate<? super ELEMENTTYPE> aFilter)
Create a new hash set that contains a subset of the provided array.
|
static <ELEMENTTYPE> |
CommonsHashSet.createFiltered(Iterable<? extends ELEMENTTYPE> aValues,
Predicate<? super ELEMENTTYPE> aFilter)
Create a new hash set that contains a subset of the provided iterable.
|
static <ELEMENTTYPE> |
CommonsHashSet.createFiltered(Iterable<? extends ELEMENTTYPE> aValues,
Predicate<? super ELEMENTTYPE> aFilter)
Create a new hash set that contains a subset of the provided iterable.
|
static <SRCTYPE,ELEMENTTYPE> |
CommonsHashSet.createFiltered(Iterable<? extends SRCTYPE> aValues,
Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper,
Predicate<? super ELEMENTTYPE> aFilter)
Create a new hash set that contains a subset of the provided iterable.
|
static <SRCTYPE,ELEMENTTYPE> |
CommonsHashSet.createFiltered(Iterable<? extends SRCTYPE> aValues,
Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper,
Predicate<? super ELEMENTTYPE> aFilter)
Create a new hash set that contains a subset of the provided iterable.
|
static <SRCTYPE,ELEMENTTYPE> |
CommonsHashSet.createFiltered(Iterable<? extends SRCTYPE> aValues,
Predicate<? super SRCTYPE> aFilter,
Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)
Create a new hash set that contains a subset of the provided iterable.
|
static <SRCTYPE,ELEMENTTYPE> |
CommonsHashSet.createFiltered(Iterable<? extends SRCTYPE> aValues,
Predicate<? super SRCTYPE> aFilter,
Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)
Create a new hash set that contains a subset of the provided iterable.
|
static <SRCTYPE,ELEMENTTYPE> |
CommonsHashSet.createFiltered(SRCTYPE[] aValues,
Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper,
Predicate<? super ELEMENTTYPE> aFilter)
Create a new hash set that contains a subset of the provided array.
|
static <SRCTYPE,ELEMENTTYPE> |
CommonsHashSet.createFiltered(SRCTYPE[] aValues,
Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper,
Predicate<? super ELEMENTTYPE> aFilter)
Create a new hash set that contains a subset of the provided array.
|
static <SRCTYPE,ELEMENTTYPE> |
CommonsHashSet.createFiltered(SRCTYPE[] aValues,
Predicate<? super SRCTYPE> aFilter,
Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)
Create a new hash set that contains a subset of the provided array.
|
static <SRCTYPE,ELEMENTTYPE> |
CommonsHashSet.createFiltered(SRCTYPE[] aValues,
Predicate<? super SRCTYPE> aFilter,
Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)
Create a new hash set that contains a subset of the provided array.
|
<T> CommonsHashSet<T> |
CommonsHashSet.createInstance() |
<T> CommonsHashSet<T> |
CommonsHashSet.createInstance() |
CommonsHashSet<ELEMENTTYPE> |
CommonsHashSet.getClone() |
CommonsHashSet<ELEMENTTYPE> |
CommonsHashSet.getClone() |
| Modifier and Type | Method and Description |
|---|---|
static CommonsHashSet<String> |
StringHelper.getExplodedToSet(String sSep,
String sElements)
Take a concatenated String and return a
Set of all elements in the
passed string, using specified separator string. |
static CommonsHashSet<String> |
StringHelper.getExplodedToSet(String sSep,
String sElements)
Take a concatenated String and return a
Set of all elements in the
passed string, using specified separator string. |
Copyright © 2014–2022 Philip Helger. All rights reserved.