Class CharArgument.CharacterParser<C>

  • All Implemented Interfaces:
    ArgumentParser<C,​java.lang.Character>
    Enclosing class:
    CharArgument<C>

    public static final class CharArgument.CharacterParser<C>
    extends java.lang.Object
    implements ArgumentParser<C,​java.lang.Character>
    • Constructor Summary

      Constructors 
      Constructor Description
      CharacterParser()  
    • Method Summary

      Modifier and Type Method Description
      boolean isContextFree()
      Check whether or not this argument parser is context free.
      @NonNull ArgumentParseResult<java.lang.Character> parse​(@NonNull CommandContext<C> commandContext, @NonNull java.util.Queue<@NonNull java.lang.String> inputQueue)
      Parse command input into a command result
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CharacterParser

        public CharacterParser()
    • Method Detail

      • parse

        public @NonNull ArgumentParseResult<java.lang.Character> parse​(@NonNull CommandContext<C> commandContext,
                                                                       @NonNull java.util.Queue<@NonNull java.lang.String> inputQueue)
        Description copied from interface: ArgumentParser
        Parse command input into a command result
        Specified by:
        parse in interface ArgumentParser<C,​java.lang.Character>
        Parameters:
        commandContext - Command context
        inputQueue - The queue of arguments
        Returns:
        Parsed command result
      • isContextFree

        public boolean isContextFree()
        Description copied from interface: ArgumentParser
        Check whether or not this argument parser is context free. A context free parser will not use the provided command context, and so supports impromptu parsing
        Specified by:
        isContextFree in interface ArgumentParser<C,​java.lang.Character>
        Returns:
        true if the parser is context free, else false