Class UUIDArgument.UUIDParser<C>
- java.lang.Object
-
- cloud.commandframework.arguments.standard.UUIDArgument.UUIDParser<C>
-
- All Implemented Interfaces:
ArgumentParser<C,java.util.UUID>
- Enclosing class:
- UUIDArgument<C>
public static final class UUIDArgument.UUIDParser<C> extends java.lang.Object implements ArgumentParser<C,java.util.UUID>
-
-
Field Summary
-
Fields inherited from interface cloud.commandframework.arguments.parser.ArgumentParser
DEFAULT_ARGUMENT_COUNT
-
-
Constructor Summary
Constructors Constructor Description UUIDParser()
-
Method Summary
Modifier and Type Method Description booleanisContextFree()Check whether or not this argument parser is context free.@NonNull ArgumentParseResult<java.util.UUID>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
-
Methods inherited from interface cloud.commandframework.arguments.parser.ArgumentParser
getRequestedArgumentCount, suggestions
-
-
-
-
Method Detail
-
parse
public @NonNull ArgumentParseResult<java.util.UUID> parse(@NonNull CommandContext<C> commandContext, @NonNull java.util.Queue<@NonNull java.lang.String> inputQueue)
Description copied from interface:ArgumentParserParse command input into a command result- Specified by:
parsein interfaceArgumentParser<C,java.util.UUID>- Parameters:
commandContext- Command contextinputQueue- The queue of arguments- Returns:
- Parsed command result
-
isContextFree
public boolean isContextFree()
Description copied from interface:ArgumentParserCheck 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:
isContextFreein interfaceArgumentParser<C,java.util.UUID>- Returns:
trueif the parser is context free, elsefalse
-
-