Interface HasChildren
-
- All Known Implementing Classes:
PropertyNode,RootNode
public interface HasChildrenAn object that allows retrievingPropertyNodechildren.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyNodechild(String reference)Returns the childPropertyNodewith the given name.
-
-
-
Method Detail
-
child
PropertyNode child(String reference)
Returns the childPropertyNodewith the given name. Until a value is retrieved, no check is made for the existence of any property.
Example: For a node representingtimeouts.network, callingchild("connect")will return a node representingtimeouts.network.connect.- Parameters:
reference- one or more segments of the key to append to the key of the current node- Returns:
- the child or descendant node, never
null.
-
-