Class SimpleBuilderProcessor<T>
java.lang.Object
com.tangosol.coherence.config.xml.processor.AbstractEmptyElementProcessor<ParameterizedBuilder<T>>
com.tangosol.coherence.config.xml.processor.SimpleBuilderProcessor<T>
- Type Parameters:
T
- the type of the builder
- All Implemented Interfaces:
ConditionalElementProcessor<ParameterizedBuilder<T>>
,ElementProcessor<ParameterizedBuilder<T>>
public class SimpleBuilderProcessor<T>
extends AbstractEmptyElementProcessor<ParameterizedBuilder<T>>
An
ElementProcessor
that returns a
simple ParameterizedBuilder
.- Since:
- 22.06
- Author:
- Jonathan Knight 2022.03.01
-
Nested Class Summary
Nested classes/interfaces inherited from class com.tangosol.coherence.config.xml.processor.AbstractEmptyElementProcessor
AbstractEmptyElementProcessor.EmptyElementBehavior
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiononProcess
(ProcessingContext context, XmlElement xmlElement) Process anXmlElement
to return a specific type of value.Methods inherited from class com.tangosol.coherence.config.xml.processor.AbstractEmptyElementProcessor
accepts, isEmptyElement, process
-
Constructor Details
-
SimpleBuilderProcessor
public SimpleBuilderProcessor()Constructs aSimpleBuilderProcessor
.
-
-
Method Details
-
onProcess
public ParameterizedBuilder<T> onProcess(ProcessingContext context, XmlElement xmlElement) throws ConfigurationException Description copied from class:AbstractEmptyElementProcessor
Process anXmlElement
to return a specific type of value.- Specified by:
onProcess
in classAbstractEmptyElementProcessor<ParameterizedBuilder<T>>
- 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
-