Class HndMultiplePlayerArg
java.lang.Object
dev.efekos.arn.resolver.impl.handler.HndMultiplePlayerArg
- All Implemented Interfaces:
CommandHandlerMethodArgumentResolver
public final class HndMultiplePlayerArg
extends Object
implements CommandHandlerMethodArgumentResolver
An implementation of
CommandHandlerMethodArgumentResolver
. Resolves Player
[] arguments.- Since:
- 0.1
- Author:
- efekos
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
isApplicable
(Parameter parameter) Returns whether thisCommandHandlerMethodArgumentResolver
can resolveparameter
.boolean
Should return true if there is aCommandArgumentResolver
assigned to this resolver.org.bukkit.entity.Player[]
resolve
(Parameter parameter, CommandHandlerMethod method, com.mojang.brigadier.context.CommandContext<net.minecraft.commands.CommandListenerWrapper> context)
-
Constructor Details
-
HndMultiplePlayerArg
public HndMultiplePlayerArg()
-
-
Method Details
-
isApplicable
Returns whether thisCommandHandlerMethodArgumentResolver
can resolveparameter
. Keep in mind, that there shouldn't be more than oneCommandHandlerMethodArgumentResolver
that can resolver the same parameter.- Specified by:
isApplicable
in interfaceCommandHandlerMethodArgumentResolver
- Parameters:
parameter
- A parameter of aCommandHandlerMethod
.- Returns:
true
if thisParameter
should be resolved using thisCommandHandlerMethodArgumentResolver
,false
otherwise.
-
resolve
public org.bukkit.entity.Player[] resolve(Parameter parameter, CommandHandlerMethod method, com.mojang.brigadier.context.CommandContext<net.minecraft.commands.CommandListenerWrapper> context) throws com.mojang.brigadier.exceptions.CommandSyntaxException - Specified by:
resolve
in interfaceCommandHandlerMethodArgumentResolver
- Parameters:
parameter
- TheParameter
that was associated with this resolver in the first place.method
- MainCommandHandlerMethod
in case something from there is needed.context
- Command context to get arguments from the executed command.- Returns:
- An object to be passed in to
parameter
. - Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException
- if needed.
-
requireCommandArgument
public boolean requireCommandArgument()Should return true if there is aCommandArgumentResolver
assigned to this resolver.- Specified by:
requireCommandArgument
in interfaceCommandHandlerMethodArgumentResolver
- Returns:
- Whether
Arn
should search for aCommandArgumentResolver
when aParameter
is resolvable by this resolver.
-