Class NbtPathNavigationAdapter
java.lang.Object
org.cyclops.cyclopscore.nbt.path.navigate.NbtPathNavigationAdapter
- All Implemented Interfaces:
INbtPathNavigation
A base navigation implementation.
-
Constructor Summary
ConstructorDescriptionNbtPathNavigationAdapter
(String key, INbtPathNavigation child) NbtPathNavigationAdapter
(Collection<String> keys, INbtPathNavigation child) -
Method Summary
-
Constructor Details
-
Method Details
-
isLeaf
protected boolean isLeaf() -
isLeafKey
Description copied from interface:INbtPathNavigation
Check if the given key is a leaf in this navigation, i.e., it is present and has no children.- Specified by:
isLeafKey
in interfaceINbtPathNavigation
- Parameters:
key
- A key.- Returns:
- If it is a leaf key.
-
getNext
Description copied from interface:INbtPathNavigation
Get the child navigation of the given key, or null if it is not present.- Specified by:
getNext
in interfaceINbtPathNavigation
- Parameters:
key
- A key.- Returns:
- The child navigation or null.
-