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>>
AnElementProcessor
that returns a simpleParameterizedBuilder
.- 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
Constructors Constructor Description SimpleBuilderProcessor()
Constructs aSimpleBuilderProcessor
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParameterizedBuilder<T>
onProcess(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 Detail
-
SimpleBuilderProcessor
public SimpleBuilderProcessor()
Constructs aSimpleBuilderProcessor
.
-
-
Method Detail
-
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
-
-