Class NbtPathExpressionParseHandlerLength
java.lang.Object
org.cyclops.cyclopscore.nbt.path.parse.NbtPathExpressionParseHandlerLength
- All Implemented Interfaces:
INbtPathExpressionParseHandler
public class NbtPathExpressionParseHandlerLength
extends Object
implements INbtPathExpressionParseHandler
A handler that handles child path expressions for ".length",
to retrieve the length of lists and tag compounds.
-
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
-
NbtPathExpressionParseHandlerLength
public NbtPathExpressionParseHandlerLength()
-
-
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.
-