Uses of Interface
org.apache.commons.configuration2.convert.ListDelimiterHandler
-
Packages that use ListDelimiterHandler Package Description org.apache.commons.configuration2 The Configuration main package.org.apache.commons.configuration2.builder This package contains the implementations of configuration builder classes used to create newConfiguration
objects.org.apache.commons.configuration2.convert 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 ListDelimiterHandler Modifier and Type Method Description ListDelimiterHandler
PropertiesConfiguration.PropertiesWriter. getDelimiterHandler()
Returns the delimiter handler for properties with multiple values.ListDelimiterHandler
AbstractConfiguration. getListDelimiterHandler()
Returns theListDelimiterHandler
used by this instance.ListDelimiterHandler
SubsetConfiguration. getListDelimiterHandler()
Returns theListDelimiterHandler
used by this instance.Methods in org.apache.commons.configuration2 with parameters of type ListDelimiterHandler Modifier and Type Method Description PropertiesConfiguration.PropertiesWriter
PropertiesConfiguration.DefaultIOFactory. createPropertiesWriter(java.io.Writer out, ListDelimiterHandler handler)
PropertiesConfiguration.PropertiesWriter
PropertiesConfiguration.IOFactory. createPropertiesWriter(java.io.Writer out, ListDelimiterHandler handler)
Creates aPropertiesWriter
for writing a properties file.PropertiesConfiguration.PropertiesWriter
PropertiesConfiguration.JupIOFactory. createPropertiesWriter(java.io.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 ListDelimiterHandler Constructor Description JupPropertiesWriter(java.io.Writer writer, ListDelimiterHandler delHandler, boolean escapeUnicode)
Creates a new instance ofJupPropertiesWriter
.PropertiesWriter(java.io.Writer writer, ListDelimiterHandler delHandler)
Creates a new instance ofPropertiesWriter
.PropertiesWriter(java.io.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 ListDelimiterHandler Modifier and Type Method Description BasicBuilderParameters
BasicBuilderParameters. setListDelimiterHandler(ListDelimiterHandler handler)
Sets the value of the listDelimiterHandler property.T
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 ListDelimiterHandler Modifier and Type Class Description class
AbstractListDelimiterHandler
An abstract base class for concreteListDelimiterHandler
implementations.class
DefaultListDelimiterHandler
The default implementation of theListDelimiterHandler
interface.class
DisabledListDelimiterHandler
A specialized implementation of theListDelimiterHandler
interface which disables list splitting.class
LegacyListDelimiterHandler
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 ListDelimiterHandler Modifier and Type Field Description static ListDelimiterHandler
DisabledListDelimiterHandler. INSTANCE
A default instance of this class.
-