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 Modifier and Type Field Description private java.util.List<java.lang.Object>
list
The list of values in the array.
-
Constructor Summary
Constructors Modifier Constructor Description private
ArrayNodeBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addValue(java.lang.Object value)
Add an object to the array.protected java.lang.Object
getNodeValue()
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
-
-
-
-
Method Detail
-
addValue
public void addValue(java.lang.Object value)
Add an object to the array.- Overrides:
addValue
in classXMLPropertyListConfiguration.PListNodeBuilder
- Parameters:
value
- the value to be added
-
getNodeValue
protected java.lang.Object getNodeValue()
Return the list of values in the array.- Overrides:
getNodeValue
in classXMLPropertyListConfiguration.PListNodeBuilder
- Returns:
- the
List
of values
-
-