Class PListParser.Dict
- java.lang.Object
-
- com.github.markusbernhardt.proxy.util.PListParser.Dict
-
-
Constructor Summary
Constructors Constructor Description Dict()Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddump()Dumps a dictionary with all sub-nodes to the console.Objectget(String key)ObjectgetAtPath(String path)Get a node at a given path.Iterator<Map.Entry<String,Object>>iterator()iteratorintsize()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
get
public Object get(String key)
- Parameters:
key- of the child node.- Returns:
- the child node, null if not existing.
-
size
public int size()
- Returns:
- the size of this dictionary.
-
dump
public void dump()
Dumps a dictionary with all sub-nodes to the console.
-
-