Integer Argument
            class IntegerArgument<T>(name: String, min: Int, max: Int, suggestion: SuggestionAction<T>?, action: ContextAction<T>?) : Argument<Int, T> 
Content copied to clipboard
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
See also
Parameters
name
Name of argument.
suggestion
Lambda expression for tab completion of its arguments.
min
The lowest possible value for this argument.
max
The highest possible value for this argument.
Check the following for the specifications of other arguments.
Constructors
IntegerArgument
                          
                    Link copied to clipboard
                        fun <T> IntegerArgument(name: String, min: Int = Int.MIN_VALUE, max: Int = Int.MAX_VALUE, suggestion: SuggestionAction<T>? = null, action: ContextAction<T>? = null)
Content copied to clipboard