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 ListDelimiterHandlerPropertiesConfiguration.PropertiesWriter.delimiterHandlerThe list delimiter handler.private ListDelimiterHandlerAbstractConfiguration.listDelimiterHandlerThe list delimiter handler.private final ListDelimiterHandlerXMLConfiguration.XMLBuilderVisitor.listDelimiterHandlerStores 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 theListDelimiterHandlerused by this instance.SubsetConfiguration.getListDelimiterHandler()Gets theListDelimiterHandlerused 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 aPropertiesWriterfor writing a properties file.PropertiesConfiguration.JupIOFactory.createPropertiesWriter(Writer out, ListDelimiterHandler handler) static StringXMLListReference.listValue(ImmutableNode node, ReferenceNodeHandler nodeHandler, ListDelimiterHandler delimiterHandler) Constructs the concatenated string value of all items comprising the list the specified node belongs to.voidAbstractConfiguration.setListDelimiterHandler(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandlerto be used by this instance.voidCompositeConfiguration.setListDelimiterHandler(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandlerto be used by this instance.voidSubsetConfiguration.setListDelimiterHandler(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandlerto 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 TypeClassDescriptionclassAn abstract base class for concreteListDelimiterHandlerimplementations.classThe default implementation of theListDelimiterHandlerinterface.classA specialized implementation of theListDelimiterHandlerinterface which disables list splitting.classA specialized implementation ofListDelimiterHandlerwhich simulates the list delimiter handling as it was used byPropertiesConfigurationin Commons Configuration 1.x.Fields in org.apache.commons.configuration2.convert declared as ListDelimiterHandlerModifier and TypeFieldDescriptionstatic final ListDelimiterHandlerDisabledListDelimiterHandler.INSTANCEA default instance of this class.(package private) static final ListDelimiterHandlerDefaultConversionHandler.LIST_DELIMITER_HANDLERThe defaultListDelimiterHandlerused for extracting values from complex objects.private ListDelimiterHandlerDefaultConversionHandler.listDelimiterHandlerThe defaultListDelimiterHandlerused for extracting values from complex objects.Methods in org.apache.commons.configuration2.convert that return ListDelimiterHandlerModifier and TypeMethodDescriptionDefaultConversionHandler.getListDelimiterHandler()Gets theListDelimiterHandlerused for extracting values from complex objects.Methods in org.apache.commons.configuration2.convert with parameters of type ListDelimiterHandlerModifier and TypeMethodDescription(package private) static Collection<?> AbstractListDelimiterHandler.flatten(ListDelimiterHandler handler, Object value, int limit, Set<Object> dejaVu) (package private) static voidAbstractListDelimiterHandler.flattenIterator(ListDelimiterHandler handler, Collection<Object> target, Iterator<?> iterator, int limit, Set<Object> dejaVue) Flattens the given iterator.voidDefaultConversionHandler.setListDelimiterHandler(ListDelimiterHandler listDelimiterHandler) Sets theListDelimiterHandlerused for extracting values from complex objects.