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
Fields in org.apache.commons.configuration2 declared as ListDelimiterHandlerModifier and TypeFieldDescriptionprivate final ListDelimiterHandler
PropertiesConfiguration.PropertiesWriter.delimiterHandler
The list delimiter handler.private ListDelimiterHandler
AbstractConfiguration.listDelimiterHandler
The list delimiter handler.private final ListDelimiterHandler
XMLConfiguration.XMLBuilderVisitor.listDelimiterHandler
Stores the list delimiter handler .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) static 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 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
.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 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.(package private) static final 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 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 TypeMethodDescription(package private) static void
AbstractListDelimiterHandler.flattenIterator
(ListDelimiterHandler handler, Collection<Object> target, Iterator<?> iterator, int limit) Flattens the given iterator.void
DefaultConversionHandler.setListDelimiterHandler
(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandler
used for extracting values from complex objects.