| Modifier and Type | Method and Description |
|---|---|
EChange |
SimpleCacheMBean.clearCache()
Remove all cached elements.
|
EChange |
AbstractCache.clearCache() |
EChange |
ISimpleCache.removeFromCache(KEYTYPE aKey)
Remove the given key from the cache.
|
EChange |
AbstractCache.removeFromCache(KEYTYPE aKey) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
ChangeLogEntry.addIssue(String sIssue)
Add a new issue ID to this entry.
|
EChange |
ChangeLogEntry.setText(Locale aContentLocale,
String sText)
Set the change text of this entry in the specified locale.
|
| Modifier and Type | Method and Description |
|---|---|
static EChange |
ContainerHelper.removeElementAtIndex(List<?> aList,
int nIndex)
Remove the element at the specified index from the passed list.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
MapBasedAttributeContainerThreadSafe.clear() |
EChange |
MapBasedAttributeContainer.clear() |
EChange |
MapBasedAttributeContainerThreadSafe.removeAttribute(String sName) |
EChange |
MapBasedAttributeContainer.removeAttribute(String sName) |
EChange |
IAttributeContainer.removeAttribute(String sName)
Remove the specified attribute from the container.
|
EChange |
MapBasedAttributeContainer.setAttribute(String sName,
boolean dValue) |
EChange |
IAttributeContainer.setAttribute(String sName,
boolean bValue)
Set/overwrite an in attribute value.
|
EChange |
MapBasedAttributeContainer.setAttribute(String sName,
double dValue) |
EChange |
IAttributeContainer.setAttribute(String sName,
double dValue)
Set/overwrite an in attribute value.
|
EChange |
MapBasedAttributeContainer.setAttribute(String sName,
int nValue) |
EChange |
IAttributeContainer.setAttribute(String sName,
int nValue)
Set/overwrite an in attribute value.
|
EChange |
MapBasedAttributeContainer.setAttribute(String sName,
long nValue) |
EChange |
IAttributeContainer.setAttribute(String sName,
long nValue)
Set/overwrite an in attribute value.
|
EChange |
MapBasedAttributeContainerThreadSafe.setAttribute(String sName,
Object aValue) |
EChange |
MapBasedAttributeContainer.setAttribute(String sName,
Object aValue) |
EChange |
IAttributeContainer.setAttribute(String sName,
Object aValue)
Set/overwrite an attribute value.
|
EChange |
MapBasedAttributeContainer.setAttributes(IReadonlyAttributeContainer aValues) |
EChange |
IAttributeContainer.setAttributes(IReadonlyAttributeContainer aValues)
Set/overwrite an arbitrary number of attribute values.
|
EChange |
MapBasedAttributeContainer.setAttributes(Map<String,?> aValues) |
EChange |
IAttributeContainer.setAttributes(Map<String,?> aValues)
Set/overwrite an arbitrary number of attribute values.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
IFlagContainer.addFlag(String sName)
Add a flag if it is not yet present.
|
EChange |
FlagContainerThreadSafe.addFlag(String sName) |
EChange |
FlagContainer.addFlag(String sName) |
EChange |
IFlagContainer.addFlags(Collection<String> aValues)
Add an arbitrary number of flags if they are not yet present.
|
EChange |
FlagContainer.addFlags(Collection<String> aValues) |
EChange |
IFlagContainer.addFlags(String... aValues)
Add an arbitrary number of flags if they are not yet present.
|
EChange |
FlagContainer.addFlags(String... aValues) |
EChange |
FlagContainerThreadSafe.clear() |
EChange |
FlagContainer.clear() |
EChange |
IFlagContainer.removeFlag(String sName)
Remove the specified flag from the container.
|
EChange |
FlagContainerThreadSafe.removeFlag(String sName) |
EChange |
FlagContainer.removeFlag(String sName) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
IMultiMap.putAllIn(Map<? extends KEYTYPE,? extends VALUETYPE> aMap)
Add all values into the container identified by the passed key-value-map.
|
EChange |
AbstractMultiWeakHashMap.putAllIn(Map<? extends KEYTYPE,? extends VALUETYPE> aMap) |
EChange |
AbstractMultiTreeMap.putAllIn(Map<? extends KEYTYPE,? extends VALUETYPE> aMap) |
EChange |
AbstractMultiLinkedHashMap.putAllIn(Map<? extends KEYTYPE,? extends VALUETYPE> aMap) |
EChange |
AbstractMultiHashMap.putAllIn(Map<? extends KEYTYPE,? extends VALUETYPE> aMap) |
EChange |
AbstractMultiConcurrentHashMap.putAllIn(Map<? extends KEYTYPE,? extends VALUETYPE> aMap) |
EChange |
IMultiMap.putSingle(KEYTYPE aKey,
VALUETYPE aValue)
Add a single value into the container identified by the passed key.
|
EChange |
AbstractMultiWeakHashMap.putSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
AbstractMultiTreeMap.putSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
AbstractMultiLinkedHashMap.putSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
AbstractMultiHashMap.putSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
AbstractMultiConcurrentHashMap.putSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
IMultiMapListBased.putSingle(KEYTYPE aKey,
VALUETYPE aValue,
int nIndex)
Add a single value into the container identified by the passed key at the
specified index.
|
EChange |
AbstractMultiWeakHashMapListBased.putSingle(KEYTYPE aKey,
VALUETYPE aValue,
int nIndex) |
EChange |
AbstractMultiTreeMapListBased.putSingle(KEYTYPE aKey,
VALUETYPE aValue,
int nIndex) |
EChange |
AbstractMultiLinkedHashMapListBased.putSingle(KEYTYPE aKey,
VALUETYPE aValue,
int nIndex) |
EChange |
AbstractMultiHashMapListBased.putSingle(KEYTYPE aKey,
VALUETYPE aValue,
int nIndex) |
EChange |
AbstractMultiConcurrentHashMapListBased.putSingle(KEYTYPE aKey,
VALUETYPE aValue,
int nIndex) |
EChange |
IMultiMap.removeSingle(KEYTYPE aKey,
VALUETYPE aValue)
Remove a single element from the container identified by the passed key.
|
EChange |
AbstractMultiWeakHashMap.removeSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
AbstractMultiTreeMap.removeSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
AbstractMultiLinkedHashMap.removeSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
AbstractMultiHashMap.removeSingle(KEYTYPE aKey,
VALUETYPE aValue) |
EChange |
AbstractMultiConcurrentHashMap.removeSingle(KEYTYPE aKey,
VALUETYPE aValue) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
Pair.setFirst(DATA1TYPE aFirst) |
EChange |
IPair.setFirst(DATA1TYPE aFirst)
Set the first value.
|
EChange |
Pair.setSecond(DATA2TYPE aSecond) |
EChange |
IPair.setSecond(DATA2TYPE aSecond)
Set the second value.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
Triple.setFirst(DATA1TYPE aFirst) |
EChange |
ITriple.setFirst(DATA1TYPE aFirst)
Set the first value.
|
EChange |
Triple.setSecond(DATA2TYPE aSecond) |
EChange |
ITriple.setSecond(DATA2TYPE aSecond)
Set the second value.
|
EChange |
Triple.setThird(DATA3TYPE aThird) |
EChange |
ITriple.setThird(DATA3TYPE aThird)
Set the third value.
|
| Modifier and Type | Method and Description |
|---|---|
static EChange |
CollatorUtils.clearCache()
Clear all cached collators.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
ThreadDeadlockDetector.addListener(IThreadDeadlockListener aListener) |
EChange |
ThreadDeadlockDetectionTimer.addListener(IThreadDeadlockListener aListener) |
EChange |
ThreadDeadlockDetector.removeAllListeners() |
EChange |
ThreadDeadlockDetectionTimer.removeAllListeners() |
EChange |
ThreadDeadlockDetector.removeListener(IThreadDeadlockListener aListener) |
EChange |
ThreadDeadlockDetectionTimer.removeListener(IThreadDeadlockListener aListener) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
EqualsImplementationRegistry.unregisterEqualsImplementation(Class<?> aClass) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
ResourceErrorGroup.clear() |
| Modifier and Type | Method and Description |
|---|---|
static EChange |
ImageDataManager.clearCache()
Remove all cached elements
|
static EChange |
ImageDataManager.clearCachedSize(IReadableResource aRes)
Remove a single resource from the cache.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
HashCodeImplementationRegistry.unregisterHashCodeImplementation(Class<?> aClass) |
| Modifier and Type | Method and Description |
|---|---|
static EChange |
GlobalIDFactory.setIntIDFactory(IIntIDFactory aFactory) |
static EChange |
GlobalIDFactory.setLongIDFactory(ILongIDFactory aFactory) |
static EChange |
GlobalIDFactory.setPersistentIntIDFactory(IIntIDFactory aFactory) |
static EChange |
GlobalIDFactory.setPersistentLongIDFactory(ILongIDFactory aFactory) |
static EChange |
GlobalIDFactory.setPersistentStringIDFactory(IStringIDFactory aFactory) |
static EChange |
GlobalIDFactory.setStringIDFactory(IStringIDFactory aFactory) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
IBatchable.startBatchProcessing()
Start batch processing on this object.
|
EChange |
IBatchable.stopBatchProcessingAndCommit()
Stop batch processing on this object and commit any pending changes.
|
| Modifier and Type | Method and Description |
|---|---|
static EChange |
FileUtils.ensureParentDirectoryIsPresent(File aFile) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
FileMonitor.addMonitoredFile(File aFile)
Adds a file to be monitored.
|
EChange |
FileMonitorManager.removeFileMonitor(FileMonitor aMonitor)
Remove a
FileMonitor. |
EChange |
FileMonitor.removeMonitoredFile(File aFile)
Removes a file from being monitored.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
AbstractJAXBMarshaller.clearLastValidationErrors()
Clear the latest parsing errors.
|
EChange |
AbstractJAXBMarshaller.setWriteFormatted(boolean bWriteFormatted)
CHange the way formatting happens when calling write.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
CollectingValidationEventHandler.clearResourceErrors()
Clear all currently stored errors.
|
| Modifier and Type | Method and Description |
|---|---|
static EChange |
EnumHelper.clearCache() |
static EChange |
ClassHierarchyCache.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 unloading
|
| Modifier and Type | Method and Description |
|---|---|
static EChange |
LocaleUtils.clearCache()
Clear all stored locale lists
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
InMemoryLogger.clear() |
| Modifier and Type | Method and Description |
|---|---|
EChange |
IMicroNode.registerEventTarget(EMicroEvent eEventType,
IMicroEventTarget aTarget)
Register a specific MicroDOM event listener.
|
EChange |
IMicroElement.removeAllAttributes()
Remove all attributes from this element
|
EChange |
IMicroNode.removeAllChildren()
Remove all children from this node.
|
EChange |
IMicroElement.removeAttribute(String sAttrName)
Remove the attribute with the given name.
|
EChange |
IMicroNode.removeChild(IMicroNode aChild)
Remove the passed child.
|
EChange |
IMicroNode.removeChildAtIndex(int nIndex)
Remove the child not at the specified index.
|
EChange |
IMicroNode.replaceChild(IMicroNode aOldChild,
IMicroNode aNewChild)
Replace the passed old child with the new child.
|
EChange |
IMicroElement.setNamespaceURI(String sNamespaceURI)
Set a new namespace URI for this element.
|
EChange |
IMicroNode.unregisterEventTarget(EMicroEvent eEventType,
IMicroEventTarget aTarget)
Unregister a specific MicroDOM event listener.
|
| Modifier and Type | Method and Description |
|---|---|
protected EChange |
AbstractMicroNodeWithChildren.onRemoveAllChildren() |
protected EChange |
AbstractMicroNode.onRemoveAllChildren()
Remove all children from this node.
|
protected EChange |
AbstractMicroNodeWithChildren.onRemoveChild(IMicroNode aChildNode) |
protected EChange |
AbstractMicroNode.onRemoveChild(IMicroNode aChild)
Callback when a child is removed.
|
protected EChange |
AbstractMicroNodeWithChildren.onRemoveChildAtIndex(int nIndex) |
protected EChange |
AbstractMicroNode.onRemoveChildAtIndex(int nIndex)
Remove the child not at the specified index.
|
EChange |
AbstractMicroNode.registerEventTarget(EMicroEvent eEventType,
IMicroEventTarget aTarget) |
EChange |
MicroElement.removeAllAttributes() |
EChange |
AbstractMicroNode.removeAllChildren() |
EChange |
MicroElement.removeAttribute(String sAttrName) |
EChange |
AbstractMicroNode.removeChild(IMicroNode aChild) |
EChange |
AbstractMicroNode.removeChildAtIndex(int nIndex) |
EChange |
AbstractMicroNode.replaceChild(IMicroNode aOldChild,
IMicroNode aNewChild) |
EChange |
MicroElement.setNamespaceURI(String sNamespaceURI) |
EChange |
AbstractMicroNode.unregisterEventTarget(EMicroEvent eEventType,
IMicroEventTarget aTarget) |
| Modifier and Type | Method and Description |
|---|---|
static EChange |
MimeTypeDeterminator.registerMimeTypeContent(MimeTypeContent aMimeTypeContent)
Register a new MIME content type.
|
EChange |
MimeType.removeAllParameters()
Remove all existing parameters.
|
EChange |
MimeType.removeParameter(MimeTypeParameter aParameter)
Remove the specified parameter from this MIME type.
|
EChange |
MimeType.removeParameterAtIndex(int nIndex)
Remove the parameter at the specified index.
|
EChange |
MimeType.removeParameterWithName(String sParamName)
Remove the parameter with the specified name.
|
static EChange |
MimeTypeDeterminator.unregisterMimeTypeContent(MimeTypeContent aMimeTypeContent)
Unregister an existing MIME content type.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
MutableBigDecimal.set(BigDecimal aValue) |
EChange |
MutableBigInteger.set(BigInteger aValue) |
EChange |
MutableBoolean.set(boolean bValue) |
EChange |
MutableByte.set(byte nValue) |
EChange |
MutableChar.set(char cValue) |
EChange |
Wrapper.set(DATATYPE aObj) |
EChange |
IWrapper.set(DATATYPE aObj)
Change the wrapped object.
|
EChange |
MutableDouble.set(double dValue) |
EChange |
MutableFloat.set(float fValue) |
EChange |
MutableShort.set(int nValue) |
EChange |
MutableInt.set(int nValue) |
EChange |
MutableChar.set(int cValue) |
EChange |
MutableByte.set(int nValue) |
EChange |
MutableLong.set(long nValue) |
EChange |
MutableShort.set(short nValue) |
| Modifier and Type | Method and Description |
|---|---|
static EChange |
RegExPool.clearPatternCache()
Clear all cached patterns.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
EChange.and(IChangeIndicator aChange) |
EChange |
IClearable.clear()
Reset the contents of the element to the after-construction state.
|
EChange |
EChange.or(IChangeIndicator aChange) |
EChange |
IStoppable.stop() |
static EChange |
EChange.valueOf(boolean bChanged) |
static EChange |
EChange.valueOf(IChangeIndicator aChangeIndicator) |
static EChange |
EChange.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.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
IMultiLingualText.addText(Locale aContentLocale,
String sText)
Add a text in the specified locale.
|
EChange |
IMultiLingualText.assignFrom(IReadonlyMultiLingualText aMLT)
Assign all fields from the passed object.
|
EChange |
IMultiLingualText.removeText(Locale aContentLocale)
Remove the text with the specified locale.
|
EChange |
IMultiLingualText.setText(Locale aContentLocale,
String sText)
Set a text in the specified locale.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
MultiLingualTextThreadSafe.addText(Locale aContentLocale,
String sText) |
EChange |
MultiLingualText.addText(Locale aContentLocale,
String sText) |
EChange |
MultiLingualTextThreadSafe.assignFrom(IReadonlyMultiLingualText aMLT) |
EChange |
MultiLingualText.assignFrom(IReadonlyMultiLingualText aMLT) |
EChange |
MultiLingualTextThreadSafe.clear() |
EChange |
MultiLingualText.clear() |
protected EChange |
TextProvider.internalClear() |
protected EChange |
TextProvider.internalRemoveText(Locale aLocale) |
EChange |
MultiLingualTextThreadSafe.removeText(Locale aContentLocale) |
EChange |
MultiLingualText.removeText(Locale aContentLocale) |
EChange |
MultiLingualTextThreadSafe.setText(Locale aContentLocale,
String sText) |
EChange |
MultiLingualText.setText(Locale aContentLocale,
String sText) |
| Modifier and Type | Method and Description |
|---|---|
static EChange |
ThirdPartyModuleRegistry.registerThirdPartyModule(IThirdPartyModule aModule) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
StopWatch.reset()
Reset all saved durations, in case this stop watch is to be used in a loop.
|
EChange |
StopWatch.start()
Start the stop watch.
|
EChange |
StopWatch.stop()
Stop the stop watch.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
ITreeItem.internalAddChild(ITEMTYPE aChild)
Add an existing child to this tree item.
|
EChange |
BasicTreeItem.internalAddChild(ITEMTYPE aChild) |
EChange |
ITreeItem.removeChild(ITEMTYPE aChild)
Remove the passed node as a child node from this node.
|
EChange |
BasicTreeItem.removeChild(ITEMTYPE aChild) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
ITreeItemWithID.internalAddChild(KEYTYPE aDataID,
ITEMTYPE aChild,
boolean bAllowOverwrite)
Add an existing direct child to this tree item.
|
EChange |
BasicTreeItemWithID.internalAddChild(KEYTYPE aDataID,
ITEMTYPE aChild,
boolean bAllowOverwrite) |
EChange |
ITreeItemWithID.removeAllChildren()
Remove all children from this node.
|
EChange |
BasicTreeItemWithID.removeAllChildren() |
EChange |
ITreeItemWithID.removeChild(KEYTYPE aDataID)
Remove the passed node as a direct child node from this node.
|
EChange |
BasicTreeItemWithID.removeChild(KEYTYPE aDataID) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
ITreeWithGlobalUniqueID.removeItemWithID(KEYTYPE aDataID)
Remove the item with the specified ID
|
EChange |
BasicTreeWithGlobalUniqueID.removeItemWithID(KEYTYPE aDataID) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
CollectingSAXErrorHandler.clearResourceErrors()
Clear all currently stored errors.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
DefaultSchemaCache.removeFromCache(IReadableResource aKey)
Utility method to remove a single resource from the schema cache.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
SAXReaderSettings.removeAllFeatures() |
static EChange |
SAXReaderDefaultSettings.removeAllFeatures() |
EChange |
DOMReaderSettings.removeAllFeatures() |
static EChange |
DOMReaderDefaultSettings.removeAllFeatures() |
EChange |
SAXReaderSettings.removeAllPropertyValues() |
static EChange |
SAXReaderDefaultSettings.removeAllPropertyValues() |
EChange |
DOMReaderSettings.removeAllPropertyValues() |
static EChange |
DOMReaderDefaultSettings.removeAllPropertyValues() |
EChange |
SAXReaderSettings.removeFeature(EXMLParserFeature eFeature) |
static EChange |
SAXReaderDefaultSettings.removeFeature(EXMLParserFeature eFeature) |
EChange |
DOMReaderSettings.removeFeature(EXMLParserFeature eFeature) |
static EChange |
DOMReaderDefaultSettings.removeFeature(EXMLParserFeature eFeature) |
EChange |
SAXReaderSettings.removePropertyValue(EXMLParserProperty eProperty) |
static EChange |
SAXReaderDefaultSettings.removePropertyValue(EXMLParserProperty eProperty) |
EChange |
DOMReaderSettings.removePropertyValue(EXMLParserProperty eProperty) |
static EChange |
DOMReaderDefaultSettings.removePropertyValue(EXMLParserProperty eProperty) |
| Modifier and Type | Method and Description |
|---|---|
EChange |
CollectingTransformErrorListener.clearResourceErrors()
Clear all currently stored errors.
|
| Modifier and Type | Method and Description |
|---|---|
EChange |
MapBasedXPathVariableResolver.addUniqueVariable(String sName,
Object aValue) |
EChange |
MapBasedXPathVariableResolver.clear() |
EChange |
MapBasedXPathVariableResolver.removeVariable(String sName) |
EChange |
MapBasedXPathVariableResolver.removeVariables(Iterable<String> aNames) |
Copyright © 2006–2014 phloc systems. All rights reserved.