Class NbtPathExpressionParseHandlerGrouping
java.lang.Object
org.cyclops.cyclopscore.nbt.path.parse.NbtPathExpressionParseHandlerGrouping
- All Implemented Interfaces:
INbtPathExpressionParseHandler
public class NbtPathExpressionParseHandlerGrouping
extends Object
implements INbtPathExpressionParseHandler
A handler that handles parenthesized expressions for grouping: "(expression)".
This allows precedence control in complex logical expressions.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.cyclops.cyclopscore.nbt.path.parse.INbtPathExpressionParseHandler
INbtPathExpressionParseHandler.HandleResult -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionhandlePrefixOf(String nbtPathExpression, int pos) Try to create an expression from the given position in the given expression.
-
Constructor Details
-
NbtPathExpressionParseHandlerGrouping
public NbtPathExpressionParseHandlerGrouping()
-
-
Method Details
-
handlePrefixOf
@Nullable public INbtPathExpressionParseHandler.HandleResult handlePrefixOf(String nbtPathExpression, int pos) Description copied from interface:INbtPathExpressionParseHandlerTry to create an expression from the given position in the given expression.- Specified by:
handlePrefixOfin interfaceINbtPathExpressionParseHandler- Parameters:
nbtPathExpression- A string representation of an NBT path expression.pos- The position in the string to start from.- Returns:
- The handler result.
-