Class NbtPathExpressionParseHandlerParent
java.lang.Object
org.cyclops.cyclopscore.nbt.path.parse.NbtPathExpressionParseHandlerParent
- All Implemented Interfaces:
INbtPathExpressionParseHandler
public class NbtPathExpressionParseHandlerParent
extends Object
implements INbtPathExpressionParseHandler
A handler that picks the parent of the NBT tree in the current execution context via "..".
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.cyclops.cyclopscore.nbt.path.parse.INbtPathExpressionParseHandler
INbtPathExpressionParseHandler.HandleResult
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionhandlePrefixOf
(String nbtPathExpression, int pos) Try to create an expression from the given position in the given expression.
-
Constructor Details
-
NbtPathExpressionParseHandlerParent
public NbtPathExpressionParseHandlerParent()
-
-
Method Details
-
handlePrefixOf
@Nullable public INbtPathExpressionParseHandler.HandleResult handlePrefixOf(String nbtPathExpression, int pos) Description copied from interface:INbtPathExpressionParseHandler
Try to create an expression from the given position in the given expression.- Specified by:
handlePrefixOf
in interfaceINbtPathExpressionParseHandler
- Parameters:
nbtPathExpression
- A string representation of an NBT path expression.pos
- The position in the string to start from.- Returns:
- The handler result.
-