Uses of Annotation Type
com.helger.commons.annotation.CodingStyleguideUnaware
Packages that use CodingStyleguideUnaware
Package
Description
-
Uses of CodingStyleguideUnaware in com.helger.commons
Methods in com.helger.commons with annotations of type CodingStyleguideUnawareModifier and TypeMethodDescriptionstatic <T extends Map<?,?>>
TValueEnforcer.noNullValue(T aValue, String sName) Check that the passed map is neithernullnor empty and that nonullkey or value is contained.static <T extends Map<?,?>>
TValueEnforcer.noNullValue(T aValue, Supplier<? extends String> aName) Check that the passed map is neithernullnor empty and that nonullkey or value is contained.static <T extends Collection<?>>
TCheck that the passedCollectionis neithernullnor empty.static <T extends Iterable<?>>
TCheck that the passedIterableis neithernullnor empty.static <T extends Map<?,?>>
TCheck that the passed Collection is neithernullnor empty.static <T extends Collection<?>>
TCheck that the passedCollectionis neithernullnor empty.static <T extends Iterable<?>>
TCheck that the passedIterableis neithernullnor empty.static <T extends Map<?,?>>
TCheck that the passed Collection is neithernullnor empty.static <T extends Map<?,?>>
TValueEnforcer.notEmptyNoNullValue(T aValue, String sName) Check that the passed map is neithernullnor empty and that nonullvalue is contained.static <T extends Map<?,?>>
TValueEnforcer.notEmptyNoNullValue(T aValue, Supplier<? extends String> aName) Check that the passed map is neithernullnor empty and that nonullvalue is contained.static <T extends Map<?,?>>
TValueEnforcer.notNullNoNullValue(T aValue, String sName) Check that the passed map is notnulland that nonullvalue is contained.static <T extends Map<?,?>>
TValueEnforcer.notNullNoNullValue(T aValue, Supplier<? extends String> aName) Check that the passed map is notnulland that nonullvalue is contained. -
Uses of CodingStyleguideUnaware in com.helger.commons.cache
Methods in com.helger.commons.cache with annotations of type CodingStyleguideUnawareModifier and TypeMethodDescriptionprotected ICommonsMap<KEYSTORETYPE, Wrapper<VALUETYPE>> MappedCache.createCache()Create a new cache map. -
Uses of CodingStyleguideUnaware in com.helger.commons.collection
Methods in com.helger.commons.collection with annotations of type CodingStyleguideUnawareModifier and TypeMethodDescriptionstatic <ELEMENTTYPE,COLLTYPE extends Collection<? super ELEMENTTYPE>>
COLLTYPECollectionHelper.getConcatenatedInline(COLLTYPE aCont, ELEMENTTYPE... aElementsToAdd) static <ELEMENTTYPE,COLLTYPE extends Collection<? super ELEMENTTYPE>>
COLLTYPECollectionHelper.getConcatenatedInline(COLLTYPE aCont, Collection<? extends ELEMENTTYPE> aElementsToAdd) static <ELEMENTTYPE,LISTTYPE extends List<ELEMENTTYPE>>
LISTTYPECollectionHelper.getReverseInlineList(LISTTYPE aList) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>,LISTTYPE extends List<ELEMENTTYPE>>
LISTTYPECollectionHelper.getSortedInline(LISTTYPE aList) static <ELEMENTTYPE,LISTTYPE extends List<ELEMENTTYPE>>
LISTTYPECollectionHelper.getSortedInline(LISTTYPE aList, Comparator<? super ELEMENTTYPE> aComparator) static <ELEMENTTYPE>
List<ELEMENTTYPE> CollectionHelper.makeUnmodifiable(ELEMENTTYPE... aArray) static <ELEMENTTYPE>
Collection<ELEMENTTYPE> CollectionHelper.makeUnmodifiable(Collection<ELEMENTTYPE> aCollection) static <ELEMENTTYPE>
List<ELEMENTTYPE> CollectionHelper.makeUnmodifiable(List<ELEMENTTYPE> aList) static <KEYTYPE,VALUETYPE>
Map<KEYTYPE, VALUETYPE> CollectionHelper.makeUnmodifiable(Map<KEYTYPE, VALUETYPE> aMap) static <KEYTYPE,VALUETYPE>
NavigableMap<KEYTYPE, VALUETYPE> CollectionHelper.makeUnmodifiable(NavigableMap<KEYTYPE, VALUETYPE> aNavigableMap) static <ELEMENTTYPE>
NavigableSet<ELEMENTTYPE> CollectionHelper.makeUnmodifiable(NavigableSet<ELEMENTTYPE> aNavigableSet) static <ELEMENTTYPE>
Set<ELEMENTTYPE> CollectionHelper.makeUnmodifiable(Set<ELEMENTTYPE> aSet) static <ELEMENTTYPE>
Collection<ELEMENTTYPE> CollectionHelper.makeUnmodifiableNotNull(Collection<ELEMENTTYPE> aCollection) static <ELEMENTTYPE>
List<ELEMENTTYPE> CollectionHelper.makeUnmodifiableNotNull(List<ELEMENTTYPE> aList) static <KEYTYPE,VALUETYPE>
Map<KEYTYPE, VALUETYPE> CollectionHelper.makeUnmodifiableNotNull(Map<KEYTYPE, VALUETYPE> aMap) static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE>
NavigableMap<KEYTYPE, VALUETYPE> CollectionHelper.makeUnmodifiableNotNull(NavigableMap<KEYTYPE, VALUETYPE> aNavigableMap) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
NavigableSet<ELEMENTTYPE> CollectionHelper.makeUnmodifiableNotNull(NavigableSet<ELEMENTTYPE> aNavigableSet) static <ELEMENTTYPE>
Set<ELEMENTTYPE> CollectionHelper.makeUnmodifiableNotNull(Set<ELEMENTTYPE> aSet) -
Uses of CodingStyleguideUnaware in com.helger.commons.collection.impl
Methods in com.helger.commons.collection.impl with annotations of type CodingStyleguideUnawareModifier and TypeMethodDescriptiondefault Collection<ELEMENTTYPE> ICommonsCollection.getAsUnmodifiable()default List<ELEMENTTYPE> ICommonsList.getAsUnmodifiable()ICommonsMap.getAsUnmodifiable()default NavigableMap<KEYTYPE, VALUETYPE> ICommonsNavigableMap.getAsUnmodifiable()default NavigableSet<ELEMENTTYPE> ICommonsNavigableSet.getAsUnmodifiable()default Set<ELEMENTTYPE> ICommonsSet.getAsUnmodifiable()ICommonsSortedMap.getAsUnmodifiable()default SortedSet<ELEMENTTYPE> ICommonsSortedSet.getAsUnmodifiable() -
Uses of CodingStyleguideUnaware in com.helger.commons.collection.map
Fields in com.helger.commons.collection.map with annotations of type CodingStyleguideUnawareModifier and TypeFieldDescriptionprotected final Map<K, AbstractSoftMap.SoftValue<K, V>> AbstractSoftMap.m_aSrcMapThe internal HashMap that will hold the SoftReference.Methods in com.helger.commons.collection.map with annotations of type CodingStyleguideUnaware -
Uses of CodingStyleguideUnaware in com.helger.commons.locale
Methods in com.helger.commons.locale with annotations of type CodingStyleguideUnawareModifier and TypeMethodDescriptionLocaleHelper.getCalculatedLocaleListForResolving(Locale aLocale) Get a list with all valid locale permutations of the passed locale. -
Uses of CodingStyleguideUnaware in com.helger.commons.string
Methods in com.helger.commons.string with annotations of type CodingStyleguideUnawareModifier and TypeMethodDescriptionstatic <COLLTYPE extends Collection<String>>
COLLTYPEStringHelper.getExploded(char cSep, String sElements, int nMaxItems, COLLTYPE aCollection) Take a concatenated String and return the passed Collection of all elements in the passed string, using specified separator string.static <COLLTYPE extends Collection<String>>
COLLTYPEStringHelper.getExploded(String sSep, String sElements, int nMaxItems, COLLTYPE aCollection) Take a concatenated String and return the passed Collection of all elements in the passed string, using specified separator string.