Class ArgumentLong
java.lang.Object
net.minestom.server.command.builder.arguments.Argument<T>
net.minestom.server.command.builder.arguments.number.ArgumentNumber<java.lang.Long>
net.minestom.server.command.builder.arguments.number.ArgumentLong
public class ArgumentLong extends ArgumentNumber<java.lang.Long>
-
Field Summary
Fields inherited from class net.minestom.server.command.builder.arguments.number.ArgumentNumber
hasMax, hasMin, max, min, NOT_NUMBER_ERROR, RANGE_ERROR
Fields inherited from class net.minestom.server.command.builder.arguments.Argument
SUCCESS, UNDEFINED_ERROR
-
Constructor Summary
Constructors Constructor Description ArgumentLong(java.lang.String id)
-
Method Summary
Modifier and Type Method Description int
getConditionResult(java.lang.Long value)
Called afterArgument.parse(String)
meaning thatvalue
should already represent a valid representation of the input.int
getCorrectionResult(java.lang.String value)
First method called to check the validity of an input.java.lang.Long
parse(java.lang.String value)
Called afterArgument.getCorrectionResult(String)
returnedArgument.SUCCESS
.Methods inherited from class net.minestom.server.command.builder.arguments.number.ArgumentNumber
between, getMax, getMin, getRadix, hasMax, hasMin, max, min, parseValue, removeScientificNotation
Methods inherited from class net.minestom.server.command.builder.arguments.Argument
allowSpace, getCallback, getId, hasErrorCallback, setCallback, useRemaining
-
Constructor Details
-
ArgumentLong
public ArgumentLong(java.lang.String id)
-
-
Method Details
-
getCorrectionResult
public int getCorrectionResult(@NotNull java.lang.String value)Description copied from class:Argument
First method called to check the validity of an input.If
Argument.allowSpace()
is enabled, the value will be incremented by the next word until it returnsArgument.SUCCESS
, meaning that you need to be sure to check the inexpensive operations first (eg the number of brackets, the first and last char, etc...).- Specified by:
getCorrectionResult
in classArgument<java.lang.Long>
- Parameters:
value
- The received argument- Returns:
- the error code or
Argument.SUCCESS
-
parse
@NotNull public java.lang.Long parse(@NotNull java.lang.String value)Description copied from class:Argument
Called afterArgument.getCorrectionResult(String)
returnedArgument.SUCCESS
.The correction being correct means that
value
shouldn't be verified again, you can assume that no exception will occur when converting it to the correct type. -
getConditionResult
public int getConditionResult(@NotNull java.lang.Long value)Description copied from class:Argument
Called afterArgument.parse(String)
meaning thatvalue
should already represent a valid representation of the input.The condition result has for goal to check the optional conditions that are user configurable (eg min/max values for a number, a specific material for an item, etc...).
- Specified by:
getConditionResult
in classArgument<java.lang.Long>
- Parameters:
value
- The parsed argument- Returns:
- the error code or
Argument.SUCCESS
-