Class ListArgument
java.lang.Object
me.efekos.simpler.commands.syntax.Argument
me.efekos.simpler.commands.syntax.impl.ListArgument
- Direct Known Subclasses:
EnumArgument
An example extension of a custom
Arguments: This argument can be one of the values you give at constructor.-
Constructor Summary
ConstructorsConstructorDescriptionListArgument(String holder, ArgumentPriority priority, String... values) Creates an instance ofListArgument. -
Method Summary
Modifier and TypeMethodDescriptionGenerates a list of suggestions about this argument.Returns a short placeholder to represent this argument.Returns a priority about this argument.handleCorrection(String given) Makes sure that the argument player wrote is valid.
-
Constructor Details
-
ListArgument
Creates an instance ofListArgument.- Parameters:
holder- Placeholder of this argument.priority- Priority of this argument.values- Values this argument can approve.
-
-
Method Details
-
getPlaceHolder
Returns a short placeholder to represent this argument. However,Argument.toString()is more recommended than this method if you want to represent this argument as aString.- Specified by:
getPlaceHolderin classArgument- Returns:
- The placeholder of this argument. Placeholder is usually a one-word string that represents what this argument should be. For example:
<player>argument should be the name of anOfflinePlayer. We are able to understand this, because that argument's placeholder is "player", meaning we should enter someone's name there.
-
getList
Generates a list of suggestions about this argument. -
handleCorrection
Makes sure that the argument player wrote is valid.- Specified by:
handleCorrectionin classArgument- Parameters:
given- The string that someone wrote as a value for this argument- Returns:
- Is the given argument valid?
-
getPriority
Returns a priority about this argument.- Specified by:
getPriorityin classArgument- Returns:
- Priority of this argument. You can make your argument an optional or required argument using this.
-