Class XMLPropertyListConfiguration.ArrayNodeBuilder
java.lang.Object
org.apache.commons.configuration2.plist.XMLPropertyListConfiguration.PListNodeBuilder
org.apache.commons.configuration2.plist.XMLPropertyListConfiguration.ArrayNodeBuilder
- Enclosing class:
XMLPropertyListConfiguration
private static final class XMLPropertyListConfiguration.ArrayNodeBuilder
extends XMLPropertyListConfiguration.PListNodeBuilder
Container for array elements. Do not use this class ! It is used internally by XMLPropertyConfiguration to
parse the configuration file, it may be removed at any moment in the future.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add an object to the array.protected Object
Return the list of values in the array.Methods inherited from class org.apache.commons.configuration2.plist.XMLPropertyListConfiguration.PListNodeBuilder
addChild, addDataValue, addDateValue, addFalseValue, addIntegerValue, addList, addRealValue, addTrueValue, createNode, setName
-
Field Details
-
list
The list of values in the array.
-
-
Constructor Details
-
ArrayNodeBuilder
private ArrayNodeBuilder()
-
-
Method Details
-
addValue
Add an object to the array.- Overrides:
addValue
in classXMLPropertyListConfiguration.PListNodeBuilder
- Parameters:
value
- the value to be added
-
getNodeValue
Return the list of values in the array.- Overrides:
getNodeValue
in classXMLPropertyListConfiguration.PListNodeBuilder
- Returns:
- the
List
of values
-