Uses of Class
com.helger.commons.collection.impl.CommonsLinkedHashSet
Packages that use CommonsLinkedHashSet
Package
Description
-
Uses of CommonsLinkedHashSet in com.helger.commons.collection
Methods in com.helger.commons.collection that return CommonsLinkedHashSetModifier and TypeMethodDescriptionstatic <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet()static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(int nInitialCapacity) static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(IIterableIterator<? extends ELEMENTTYPE> aIter) static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(ELEMENTTYPE aValue) static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(ELEMENTTYPE... aValues) static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(Iterable<? extends ELEMENTTYPE> aCont) static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(Collection<? extends ELEMENTTYPE> aCont) static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(Collection<? extends ELEMENTTYPE> aCollection, Predicate<? super ELEMENTTYPE> aFilter) static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(Enumeration<? extends ELEMENTTYPE> aEnum) static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE> CollectionHelper.newOrderedSet(Iterator<? extends ELEMENTTYPE> aIter) static <SRCTYPE,DSTTYPE>
CommonsLinkedHashSet<DSTTYPE> CollectionHelper.newOrderedSetMapped(Collection<? extends SRCTYPE> aCollection, Function<? super SRCTYPE, DSTTYPE> aMapper) static <SRCTYPE,DSTTYPE>
CommonsLinkedHashSet<DSTTYPE> CollectionHelper.newOrderedSetMapped(SRCTYPE[] aArray, Function<? super SRCTYPE, DSTTYPE> aMapper) static CommonsLinkedHashSet<Boolean> PrimitiveCollectionHelper.newPrimitiveOrderedSet(boolean... aValues) static CommonsLinkedHashSet<Byte> PrimitiveCollectionHelper.newPrimitiveOrderedSet(byte... aValues) static CommonsLinkedHashSet<Character> PrimitiveCollectionHelper.newPrimitiveOrderedSet(char... aValues) static CommonsLinkedHashSet<Double> PrimitiveCollectionHelper.newPrimitiveOrderedSet(double... aValues) static CommonsLinkedHashSet<Float> PrimitiveCollectionHelper.newPrimitiveOrderedSet(float... aValues) static CommonsLinkedHashSet<Integer> PrimitiveCollectionHelper.newPrimitiveOrderedSet(int... aValues) static CommonsLinkedHashSet<Long> PrimitiveCollectionHelper.newPrimitiveOrderedSet(long... aValues) static CommonsLinkedHashSet<Short> PrimitiveCollectionHelper.newPrimitiveOrderedSet(short... aValues) -
Uses of CommonsLinkedHashSet in com.helger.commons.collection.impl
Methods in com.helger.commons.collection.impl that return CommonsLinkedHashSetModifier and TypeMethodDescription<T> CommonsLinkedHashSet<T> CommonsLinkedHashSet.createInstance()CommonsLinkedHashSet.getClone() -
Uses of CommonsLinkedHashSet in com.helger.commons.string
Methods in com.helger.commons.string that return CommonsLinkedHashSetModifier and TypeMethodDescriptionstatic CommonsLinkedHashSet<String> StringHelper.getExplodedToOrderedSet(String sSep, String sElements) Take a concatenated String and return an orderedCommonsLinkedHashSetof all elements in the passed string, using specified separator string.