Class NoOpElementProcessor
- java.lang.Object
-
- com.tangosol.coherence.config.xml.processor.NoOpElementProcessor
-
- All Implemented Interfaces:
ElementProcessor<Void>
public class NoOpElementProcessor extends Object implements ElementProcessor<Void>
AnElementProcessor
that does nothing.- Since:
- 22.06.2
- Author:
- Jonathan Knight 2022.08.25
-
-
Field Summary
Fields Modifier and Type Field Description static NoOpElementProcessor
INSTANCE
Singleton instance ofNoOpElementProcessor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Void
process(ProcessingContext context, XmlElement xmlElement)
Process anXmlElement
to return a specific type of value.
-
-
-
Field Detail
-
INSTANCE
public static final NoOpElementProcessor INSTANCE
Singleton instance ofNoOpElementProcessor
-
-
Method Detail
-
process
public Void process(ProcessingContext context, XmlElement xmlElement) throws ConfigurationException
Description copied from interface:ElementProcessor
Process anXmlElement
to return a specific type of value.- Specified by:
process
in interfaceElementProcessor<Void>
- Parameters:
context
- theProcessingContext
in which theXmlElement
is being processedxmlElement
- theXmlElement
to process- Returns:
- a value of type T
- Throws:
ConfigurationException
- when a configuration problem was encountered
-
-