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
Constructors - 
Method Summary
Modifier and TypeMethodDescriptiononProcess(ProcessingContext context, XmlElement xmlElement) Process anXmlElementto 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:AbstractEmptyElementProcessorProcess anXmlElementto return a specific type of value.- Specified by:
 onProcessin classAbstractEmptyElementProcessor<ParameterizedBuilder<T>>- Parameters:
 context- theProcessingContextin which theXmlElementis being processedxmlElement- theXmlElementto process- Returns:
 - a value of type T
 - Throws:
 ConfigurationException- when a configuration problem was encountered
 
 -