Uses of Class
com.helger.commons.state.EChange
-
-
Uses of EChange in com.helger.commons.cache
Methods in com.helger.commons.cache that return EChange Modifier and Type Method Description EChangeIMutableCache. clearCache()Remove all cached elements.EChangeMappedCache. clearCache()EChangeIMutableCache. removeFromCache(KEYTYPE aKey)Remove the given key from the cache.EChangeMappedCache. removeFromCache(KEYTYPE aKey) -
Uses of EChange in com.helger.commons.callback
Methods in com.helger.commons.callback that return EChange Modifier and Type Method Description EChangeCallbackList. add(CALLBACKTYPE aCallback)Add a callback.EChangeCallbackList. addAll(CALLBACKTYPE... aCallbacks)Add an array of elements to this collection.EChangeCallbackList. removeAll()Remove all callbacksEChangeCallbackList. removeObject(CALLBACKTYPE aCallback)Remove the specified callbackEChangeCallbackList. set(CALLBACKTYPE aCallback)Clear all elements and add only the passed value.EChangeCallbackList. set(CallbackList<CALLBACKTYPE> rhs)Clear all elements and add all provided values. -
Uses of EChange in com.helger.commons.collection
Methods in com.helger.commons.collection that return EChange Modifier and Type Method Description static EChangeCollectionHelper. removeAtIndex(List<?> aList, int nIndex)Remove the element at the specified index from the passed list. -
Uses of EChange in com.helger.commons.collection.attr
Methods in com.helger.commons.collection.attr that return EChange Modifier and Type Method Description default EChangeIAttributeContainer. putAllIn(Map<? extends KEYTYPE,? extends VALUETYPE> aAttrs)default EChangeIAttributeContainer. putIn(KEYTYPE aName, VALUETYPE aNewValue)Set/overwrite an attribute value including before and after callbacks.default EChangeIAttributeContainerAny. putIn(KEYTYPE aName, boolean bValue)Set/overwrite an attribute value.default EChangeIAttributeContainerAny. putIn(KEYTYPE aName, double dValue)Set/overwrite an attribute value.default EChangeIAttributeContainerAny. putIn(KEYTYPE aName, float fValue)Set/overwrite an attribute value.default EChangeIAttributeContainerAny. putIn(KEYTYPE aName, int nValue)Set/overwrite an attribute value.default EChangeIAttributeContainerAny. putIn(KEYTYPE aName, long nValue)Set/overwrite an attribute value.default EChangeIAttributeContainerAny. putIn(KEYTYPE aName, short nValue)Set/overwrite an attribute value.default EChangeIStringMap. putIn(String sName, boolean bValue)default EChangeIStringMap. putIn(String sName, double dValue)default EChangeIStringMap. putIn(String sName, float fValue)default EChangeIStringMap. putIn(String sName, int nValue)default EChangeIStringMap. putIn(String sName, long nValue)default EChangeIStringMap. putIn(String sName, short nValue) -
Uses of EChange in com.helger.commons.collection.impl
Methods in com.helger.commons.collection.impl that return EChange Modifier and Type Method Description default EChangeICommonsCollection. addAll(ELEMENTTYPE... aElements)Add an array of elements to this collection.default EChangeICommonsCollection. addAll(ELEMENTTYPE[] aElements, Predicate<? super ELEMENTTYPE> aFilter)Add all matching elements of an array this collection.default EChangeICommonsCollection. addAll(Iterable<? extends ELEMENTTYPE> aElements)Add all elements of the passed iterable to this collection.default EChangeICommonsCollection. addAll(Iterable<? extends ELEMENTTYPE> aElements, Predicate<? super ELEMENTTYPE> aFilter)Add all elements of the passed iterable to this collection.default EChangeICommonsCollection. addAll(Enumeration<? extends ELEMENTTYPE> aEnum)Add all elements of the passed enumeration to this collection.default EChangeICommonsCollection. addAll(Enumeration<? extends ELEMENTTYPE> aEnum, Predicate<? super ELEMENTTYPE> aFilter)Add all elements of the passed enumeration to this collection.default EChangeICommonsCollection. addAll(Iterator<? extends ELEMENTTYPE> aIter)Add all elements of the passed iterator to this collection.default EChangeICommonsCollection. addAll(Iterator<? extends ELEMENTTYPE> aIter, Predicate<? super ELEMENTTYPE> aFilter)Add all elements of the passed iterator to this collection.default <SRCTYPE> EChangeICommonsCollection. addAllMapped(Iterable<? extends SRCTYPE> aElements, Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)Add all passed elements after performing a mapping using the provided function.default <SRCTYPE> EChangeICommonsCollection. addAllMapped(Iterable<? extends SRCTYPE> aElements, Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper, Predicate<? super ELEMENTTYPE> aFilter)Add all passed elements matching the provided filter after performing a mapping using the provided function.default <SRCTYPE> EChangeICommonsCollection. addAllMapped(Iterable<? extends SRCTYPE> aElements, Predicate<? super SRCTYPE> aFilter, Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)Add all passed elements matching the provided filter after performing a mapping using the provided function.default <SRCTYPE> EChangeICommonsCollection. addAllMapped(SRCTYPE[] aElements, Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)Add all passed elements after performing a mapping using the provided function.default <SRCTYPE> EChangeICommonsCollection. addAllMapped(SRCTYPE[] aElements, Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper, Predicate<? super ELEMENTTYPE> aFilter)Add all passed elements matching the provided filter after performing a mapping using the provided function.default <SRCTYPE> EChangeICommonsCollection. addAllMapped(SRCTYPE[] aElements, Predicate<? super SRCTYPE> aFilter, Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)Add all passed elements matching the provided filter after performing a mapping using the provided function.default EChangeICommonsCollection. addIf(ELEMENTTYPE aElement, Predicate<? super ELEMENTTYPE> aFilter)Add the passed element to this collection if passed predicate is fulfilleddefault EChangeICommonsCollection. addIfNotNull(ELEMENTTYPE aElement)Add the passed element to this collection if it is non-null.default EChangeICommonsCollection. addObject(ELEMENTTYPE aElement)add the provided element to the collection usingCollection.add(Object)but returning a more structured return value.default EChangeICommonsCollection. removeAll()Remove all elements from this collection.default EChangeICommonsMap. removeAll()Remove all elements from this collection.default EChangeICommonsList. removeAtIndex(int nIndex)Remove the element at the specified index from the passed list.default EChangeICommonsMap. removeIf(Predicate<? super Map.Entry<? extends KEYTYPE,? extends VALUETYPE>> aFilter)default EChangeICommonsMap. removeIfKey(Predicate<? super KEYTYPE> aFilter)default EChangeICommonsMap. removeIfValue(Predicate<? super VALUETYPE> aFilter)default EChangeICommonsCollection. removeObject(ELEMENTTYPE aElement)Remove the provided element from the collection usingCollection.remove(Object)but returning a more structured return value.default EChangeICommonsMap. removeObject(KEYTYPE aKey)Remove the object with the passed key from this map.default EChangeICommonsCollection. set(ELEMENTTYPE aValue)Clear all elements and add only the passed value.default EChangeICommonsCollection. setAll(ELEMENTTYPE... aValues)Clear all elements and add all provided values.default EChangeICommonsCollection. setAll(Iterable<? extends ELEMENTTYPE> aValues)Clear all elements and add all provided values.default EChangeICommonsMap. setAll(Map<? extends KEYTYPE,? extends VALUETYPE> aValues)Clear and add all provided values.default <SRCTYPE> EChangeICommonsCollection. setAllMapped(Iterable<? extends SRCTYPE> aValues, Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)Clear all elements and add all provided values.default <SRCTYPE> EChangeICommonsCollection. setAllMapped(SRCTYPE[] aValues, Function<? super SRCTYPE,? extends ELEMENTTYPE> aMapper)Clear all elements and add all provided values. -
Uses of EChange in com.helger.commons.compare
Methods in com.helger.commons.compare that return EChange Modifier and Type Method Description static EChangeCollatorHelper. clearCache()Clear all cached collators. -
Uses of EChange in com.helger.commons.deadlock
Methods in com.helger.commons.deadlock that return EChange Modifier and Type Method Description EChangeThreadDeadlockDetectionTimer. stop()Stop the deadlock detection task -
Uses of EChange in com.helger.commons.equals
Methods in com.helger.commons.equals that return EChange Modifier and Type Method Description EChangeEqualsImplementationRegistry. unregisterEqualsImplementation(Class<?> aClass) -
Uses of EChange in com.helger.commons.gfx
Methods in com.helger.commons.gfx that return EChange Modifier and Type Method Description EChangeImageDataManager. clearCache()Remove all cached elementsEChangeImageDataManager. clearCachedSize(IReadableResource aRes)Remove a single resource from the cache. -
Uses of EChange in com.helger.commons.hashcode
Methods in com.helger.commons.hashcode that return EChange Modifier and Type Method Description EChangeHashCodeImplementationRegistry. unregisterHashCodeImplementation(Class<?> aClass) -
Uses of EChange in com.helger.commons.http
Methods in com.helger.commons.http that return EChange Modifier and Type Method Description EChangeHttpHeaderMap. removeAll()Remove all contained headers.EChangeHttpHeaderMap. removeHeader(String sName, String sValue)EChangeHttpHeaderMap. removeHeaders(String sName)Remove all header values with the provided nameEChangeHttpHeaderMap. removeHeadersIf(Predicate<? super String> aNameFilter)Remove all header values where the name matches the provided filter. -
Uses of EChange in com.helger.commons.id.factory
Methods in com.helger.commons.id.factory that return EChange Modifier and Type Method Description static EChangeGlobalIDFactory. setIntIDFactory(IIntIDFactory aFactory)static EChangeGlobalIDFactory. setLongIDFactory(ILongIDFactory aFactory)static EChangeGlobalIDFactory. setPersistentIntIDFactory(IIntIDFactory aFactory)static EChangeGlobalIDFactory. setPersistentLongIDFactory(ILongIDFactory aFactory)static EChangeGlobalIDFactory. setPersistentStringIDFactory(IStringIDFactory aFactory)static EChangeGlobalIDFactory. setStringIDFactory(IStringIDFactory aFactory) -
Uses of EChange in com.helger.commons.io.file
Methods in com.helger.commons.io.file that return EChange Modifier and Type Method Description static EChangeFileHelper. ensureParentDirectoryIsPresent(File aFile)static EChangePathHelper. ensureParentDirectoryIsPresent(Path aFile) -
Uses of EChange in com.helger.commons.lang
Methods in com.helger.commons.lang that return EChange Modifier and Type Method Description static EChangeClassHierarchyCache. clearCache()It's important to clear the cache upon application shutdown, because for web applications, keeping a cache of classes may prevent the web application from unloadingstatic EChangeEnumHelper. clearCache() -
Uses of EChange in com.helger.commons.locale
Methods in com.helger.commons.locale that return EChange Modifier and Type Method Description static EChangeLocaleHelper. clearCache()Clear all stored locale lists -
Uses of EChange in com.helger.commons.log
Methods in com.helger.commons.log that return EChange Modifier and Type Method Description EChangeInMemoryLogger. removeAll() -
Uses of EChange in com.helger.commons.mime
Methods in com.helger.commons.mime that return EChange Modifier and Type Method Description EChangeMimeTypeDeterminator. registerMimeTypeContent(MimeTypeContent aMimeTypeContent)Register a new MIME content type.EChangeMimeType. removeAllParameters()Remove all existing parameters.EChangeMimeType. removeParameter(MimeTypeParameter aParameter)Remove the specified parameter from this MIME type.EChangeMimeType. removeParameterAtIndex(int nIndex)Remove the parameter at the specified index.EChangeMimeType. removeParameterWithName(String sParamName)Remove the parameter with the specified name.EChangeMimeTypeDeterminator. unregisterMimeTypeContent(MimeTypeContent aMimeTypeContent)Unregister an existing MIME content type. -
Uses of EChange in com.helger.commons.mutable
Methods in com.helger.commons.mutable that return EChange Modifier and Type Method Description EChangeMutableBigDecimal. set(double dDelta)EChangeMutableBigDecimal. set(long nDelta)EChangeMutableBigDecimal. set(MutableBigDecimal aValue)EChangeMutableBigDecimal. set(BigDecimal aValue)EChangeMutableBigInteger. set(long nDelta)EChangeMutableBigInteger. set(MutableBigInteger aValue)EChangeMutableBigInteger. set(BigInteger aValue)EChangeMutableBoolean. set(boolean bValue)EChangeMutableBoolean. set(MutableBoolean aValue)EChangeMutableBoolean. set(Boolean aValue)EChangeMutableByte. set(byte nValue)EChangeMutableByte. set(int nValue)EChangeMutableByte. set(Number aValue)EChangeMutableChar. set(char cValue)EChangeMutableChar. set(int cValue)EChangeMutableChar. set(MutableChar aMC)EChangeMutableDouble. set(double dValue)EChangeMutableDouble. set(Number aValue)EChangeMutableFloat. set(float fValue)EChangeMutableFloat. set(Number aValue)EChangeMutableInt. set(int nValue)EChangeMutableInt. set(Number aValue)EChangeMutableLong. set(long nValue)EChangeMutableLong. set(Number aValue)EChangeMutableShort. set(int nValue)EChangeMutableShort. set(short nValue)EChangeMutableShort. set(Number aValue) -
Uses of EChange in com.helger.commons.state
Methods in com.helger.commons.state that return EChange Modifier and Type Method Description default EChangeIChangeIndicator. and(boolean bChange)default EChangeIChangeIndicator. and(IChangeIndicator aChange)default EChangeIChangeIndicator. or(boolean bChange)default EChangeIChangeIndicator. or(IChangeIndicator aChange)EChangeIClearable. removeAll()Reset the contents of the element to the after-construction state.EChangeIStoppable. stop()static EChangeEChange. valueOf(boolean bChanged)Returns the enum constant of this type with the specified name.static EChangeEChange. valueOf(IChangeIndicator aChangeIndicator)Returns the enum constant of this type with the specified name.static EChangeEChange. valueOf(String name)Returns the enum constant of this type with the specified name.static EChange[]EChange. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of EChange in com.helger.commons.system
Methods in com.helger.commons.system that return EChange Modifier and Type Method Description static EChangeSystemProperties. setPropertyValue(String sKey, boolean bValue)Set a system property value under consideration of an eventually presentSecurityManager.static EChangeSystemProperties. setPropertyValue(String sKey, int nValue)Set a system property value under consideration of an eventually presentSecurityManager.static EChangeSystemProperties. setPropertyValue(String sKey, long nValue)Set a system property value under consideration of an eventually presentSecurityManager.static EChangeSystemProperties. setPropertyValue(String sKey, String sValue)Set a system property value under consideration of an eventually presentSecurityManager. -
Uses of EChange in com.helger.commons.text
Methods in com.helger.commons.text that return EChange Modifier and Type Method Description EChangeAbstractMapBasedMultilingualText. addText(Locale aContentLocale, String sText)EChangeIMutableMultilingualText. addText(Locale aContentLocale, String sText)Add a text in the specified locale.EChangeAbstractMapBasedMultilingualText. assignFrom(IMultilingualText aMLT)EChangeIMutableMultilingualText. assignFrom(IMultilingualText aMLT)Assign all fields from the passed object.EChangeAbstractMapBasedMultilingualText. removeAll()EChangeAbstractMapBasedMultilingualText. removeText(Locale aContentLocale)EChangeIMutableMultilingualText. removeText(Locale aContentLocale)Remove the text with the specified locale.EChangeAbstractMapBasedMultilingualText. setText(Locale aContentLocale, String sText)EChangeIMutableMultilingualText. setText(Locale aContentLocale, String sText)Set a text in the specified locale. -
Uses of EChange in com.helger.commons.thirdparty
Methods in com.helger.commons.thirdparty that return EChange Modifier and Type Method Description EChangeThirdPartyModuleRegistry. registerThirdPartyModule(IThirdPartyModule aModule) -
Uses of EChange in com.helger.commons.timing
Methods in com.helger.commons.timing that return EChange Modifier and Type Method Description EChangeStopWatch. reset()Reset all saved durations, in case this stop watch is to be used in a loop.EChangeStopWatch. start()Start the stop watch.EChangeStopWatch. stop()Stop the stop watch. -
Uses of EChange in com.helger.commons.wrapper
Methods in com.helger.commons.wrapper that return EChange Modifier and Type Method Description EChangeIMutableWrapper. set(DATATYPE aObj)Change the wrapped object.EChangeWrapper. set(DATATYPE aObj)
-