All Implemented Interfaces:
AliasedParser

public class PatternTransformParser extends RichParser<ResettableExtent>
  • Constructor Details

    • PatternTransformParser

      public PatternTransformParser(WorldEdit worldEdit)
      Create a new rich parser with a defined prefix for the result, e.g. #simplex.
      Parameters:
      worldEdit - the worldedit instance.
  • Method Details

    • getSuggestions

      protected Stream<String> getSuggestions(String argumentInput, int index)
      Description copied from class: RichParser
      Returns a stream of suggestions for the argument at the given index.
      Specified by:
      getSuggestions in class RichParser<ResettableExtent>
      Parameters:
      argumentInput - the already provided input for the argument at the given index.
      index - the index of the argument to get suggestions for.
      Returns:
      a stream of suggestions matching the given input for the argument at the given index.
    • parseFromInput

      protected ResettableExtent parseFromInput(@Nonnull String[] arguments, ParserContext context) throws InputParseException
      Description copied from class: RichParser
      Parses the already split arguments.
      Specified by:
      parseFromInput in class RichParser<ResettableExtent>
      Parameters:
      arguments - the array of arguments that were split (can be empty).
      context - the context of this parsing process.
      Returns:
      the resulting parsed type.
      Throws:
      InputParseException - if the input couldn't be parsed correctly.