-
- All Implemented Interfaces:
-
dev.kotx.flylib.command.Argument
public final class IntegerArgument<T extends Object> implements Argument<Int, T>
Integer argument. You can set the minimum and maximum values. If it falls below the minimum value or exceeds the maximum value, an error will be displayed on the client side, and even if you try to execute it, it will not be accepted. Expected input:
2-120
-
-
Field Summary
Fields Modifier and Type Field Description private final ArgumentType<?>typeprivate final Stringnameprivate final SuggestionAction<T>suggestionprivate final ContextAction<T>action
-
Constructor Summary
Constructors Constructor Description IntegerArgument(String name, Integer min, Integer max, SuggestionAction<T> suggestion, ContextAction<T> action)
-
Method Summary
Modifier and Type Method Description ArgumentType<?>getType()Mojang Brigadier argument type. StringgetName()SuggestionAction<T>getSuggestion()ContextAction<T>getAction()Argument context action Integerparse(CommandContext<CommandListenerWrapper> context, String key)-
-
Constructor Detail
-
IntegerArgument
IntegerArgument(String name, Integer min, Integer max, SuggestionAction<T> suggestion, ContextAction<T> action)
- Parameters:
name- Name of argument.min- The lowest possible value for this argument.max- The highest possible value for this argument.suggestion- Lambda expression for tab completion of its arguments.
-
-
Method Detail
-
getType
ArgumentType<?> getType()
Mojang Brigadier argument type.
-
getSuggestion
SuggestionAction<T> getSuggestion()
-
getAction
ContextAction<T> getAction()
Argument context action
-
-
-
-