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
Fields in org.apache.commons.configuration2 declared as ListDelimiterHandler Modifier and Type Field Description private ListDelimiterHandler
PropertiesConfiguration.PropertiesWriter. delimiterHandler
The list delimiter handler.private ListDelimiterHandler
AbstractConfiguration. listDelimiterHandler
The list delimiter handler.private ListDelimiterHandler
XMLConfiguration.XMLBuilderVisitor. listDelimiterHandler
Stores the list delimiter handler .Methods in org.apache.commons.configuration2 that return ListDelimiterHandler Modifier and Type Method Description ListDelimiterHandler
PropertiesConfiguration.PropertiesWriter. getDelimiterHandler()
Gets the delimiter handler for properties with multiple values.ListDelimiterHandler
AbstractConfiguration. getListDelimiterHandler()
Gets theListDelimiterHandler
used by this instance.ListDelimiterHandler
SubsetConfiguration. getListDelimiterHandler()
Gets 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)
static java.lang.String
XMLListReference. listValue(ImmutableNode node, ReferenceNodeHandler nodeHandler, ListDelimiterHandler delimiterHandler)
Constructs the concatenated string value of all items comprising the list the specified node belongs to.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
.XMLBuilderVisitor(XMLDocumentHelper docHelper, ListDelimiterHandler handler)
Creates a new instance ofXMLBuilderVisitor
. -
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.(package private) static ListDelimiterHandler
DefaultConversionHandler. LIST_DELIMITER_HANDLER
The defaultListDelimiterHandler
used for extracting values from complex objects.private ListDelimiterHandler
DefaultConversionHandler. listDelimiterHandler
The defaultListDelimiterHandler
used for extracting values from complex objects.Methods in org.apache.commons.configuration2.convert that return ListDelimiterHandler Modifier and Type Method Description ListDelimiterHandler
DefaultConversionHandler. getListDelimiterHandler()
Gets theListDelimiterHandler
used for extracting values from complex objects.Methods in org.apache.commons.configuration2.convert with parameters of type ListDelimiterHandler Modifier and Type Method Description (package private) static java.util.Collection<?>
AbstractListDelimiterHandler. flatten(ListDelimiterHandler handler, java.lang.Object value, int limit, java.util.Set<java.lang.Object> dejaVu)
(package private) static void
AbstractListDelimiterHandler. flattenIterator(ListDelimiterHandler handler, java.util.Collection<java.lang.Object> target, java.util.Iterator<?> iterator, int limit, java.util.Set<java.lang.Object> dejaVue)
Flattens the given iterator.void
DefaultConversionHandler. setListDelimiterHandler(ListDelimiterHandler listDelimiterHandler)
Sets theListDelimiterHandler
used for extracting values from complex objects.
-