Uses of Interface
org.apache.commons.configuration2.convert.ListDelimiterHandler
Packages that use ListDelimiterHandler
Package
Description
The Configuration main package.
This package contains the implementations of configuration builder classes used to create new
Configuration
objects.
This package contains interfaces and classes related to data type conversions.
-
Uses of ListDelimiterHandler in org.apache.commons.configuration2
Methods in org.apache.commons.configuration2 that return ListDelimiterHandlerModifier and TypeMethodDescriptionPropertiesConfiguration.PropertiesWriter.getDelimiterHandler()
Gets the delimiter handler for properties with multiple values.AbstractConfiguration.getListDelimiterHandler()
Gets theListDelimiterHandler
used by this instance.SubsetConfiguration.getListDelimiterHandler()
Gets theListDelimiterHandler
used by this instance.Methods in org.apache.commons.configuration2 with parameters of type ListDelimiterHandlerModifier and TypeMethodDescriptionPropertiesConfiguration.DefaultIOFactory.createPropertiesWriter
(Writer out, ListDelimiterHandler handler) PropertiesConfiguration.IOFactory.createPropertiesWriter
(Writer out, ListDelimiterHandler handler) Creates aPropertiesWriter
for writing a properties file.PropertiesConfiguration.JupIOFactory.createPropertiesWriter
(Writer out, ListDelimiterHandler handler) void
AbstractConfiguration.setListDelimiterHandler
(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandler
to be used by this instance.void
CompositeConfiguration.setListDelimiterHandler
(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandler
to be used by this instance.void
SubsetConfiguration.setListDelimiterHandler
(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandler
to be used by this instance.Constructors in org.apache.commons.configuration2 with parameters of type ListDelimiterHandlerModifierConstructorDescriptionJupPropertiesWriter
(Writer writer, ListDelimiterHandler delHandler, boolean escapeUnicode) Creates a new instance ofJupPropertiesWriter
.PropertiesWriter
(Writer writer, ListDelimiterHandler delHandler) Creates a new instance ofPropertiesWriter
.PropertiesWriter
(Writer writer, ListDelimiterHandler delHandler, ValueTransformer valueTransformer) Creates a new instance ofPropertiesWriter
. -
Uses of ListDelimiterHandler in org.apache.commons.configuration2.builder
Methods in org.apache.commons.configuration2.builder with parameters of type ListDelimiterHandlerModifier and TypeMethodDescriptionBasicBuilderParameters.setListDelimiterHandler
(ListDelimiterHandler handler) Sets the value of the listDelimiterHandler property.BasicBuilderProperties.setListDelimiterHandler
(ListDelimiterHandler handler) Sets the value of the listDelimiterHandler property. -
Uses of ListDelimiterHandler in org.apache.commons.configuration2.convert
Classes in org.apache.commons.configuration2.convert that implement ListDelimiterHandlerModifier and TypeClassDescriptionclass
An abstract base class for concreteListDelimiterHandler
implementations.class
The default implementation of theListDelimiterHandler
interface.class
A specialized implementation of theListDelimiterHandler
interface which disables list splitting.class
A specialized implementation ofListDelimiterHandler
which simulates the list delimiter handling as it was used byPropertiesConfiguration
in Commons Configuration 1.x.Fields in org.apache.commons.configuration2.convert declared as ListDelimiterHandlerModifier and TypeFieldDescriptionstatic final ListDelimiterHandler
DisabledListDelimiterHandler.INSTANCE
A default instance of this class.Methods in org.apache.commons.configuration2.convert that return ListDelimiterHandlerModifier and TypeMethodDescriptionDefaultConversionHandler.getListDelimiterHandler()
Gets theListDelimiterHandler
used for extracting values from complex objects.Methods in org.apache.commons.configuration2.convert with parameters of type ListDelimiterHandlerModifier and TypeMethodDescriptionvoid
DefaultConversionHandler.setListDelimiterHandler
(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandler
used for extracting values from complex objects.