Uses of Interface
com.github.siroshun09.mccommand.common.argument.parser.ArgumentParser
-
Packages that use ArgumentParser Package Description com.github.siroshun09.mccommand.bukkit.parser The package of classes that implement theArgumentParser
that can be used on Bukkit.com.github.siroshun09.mccommand.bungee.parser The package of classes that implement theArgumentParser
that can be used on BungeeCord.com.github.siroshun09.mccommand.common.argument The package of classes relevant to arguments.com.github.siroshun09.mccommand.common.argument.parser The package of classes to parseArgument
.com.github.siroshun09.mccommand.paper.parser The package of classes that implement theArgumentParser
that can be used on Bukkit. -
-
Uses of ArgumentParser in com.github.siroshun09.mccommand.bukkit.parser
Classes in com.github.siroshun09.mccommand.bukkit.parser that implement ArgumentParser Modifier and Type Class Description class
MaterialParser
class
OfflinePlayerParser
A class that parses anArgument
to anOfflinePlayer
.class
PlayerExactParser
class
PlayerParser
class
SoundParser
Fields in com.github.siroshun09.mccommand.bukkit.parser declared as ArgumentParser Modifier and Type Field Description static ArgumentParser<Material>
BukkitParser. MATERIAL
static ArgumentParser<OfflinePlayer>
BukkitParser. OFFLINE_PLAYER
static ArgumentParser<Player>
BukkitParser. PLAYER
static ArgumentParser<Player>
BukkitParser. PLAYER_EXACT
static ArgumentParser<Sound>
BukkitParser. SOUND
-
Uses of ArgumentParser in com.github.siroshun09.mccommand.bungee.parser
Classes in com.github.siroshun09.mccommand.bungee.parser that implement ArgumentParser Modifier and Type Class Description class
ProxiedPlayerParser
A class that parses anArgument
to anProxiedPlayer
.Fields in com.github.siroshun09.mccommand.bungee.parser declared as ArgumentParser Modifier and Type Field Description static ArgumentParser<ProxiedPlayer>
BungeeParser. PROXIED_PLAYER
-
Uses of ArgumentParser in com.github.siroshun09.mccommand.common.argument
Methods in com.github.siroshun09.mccommand.common.argument with parameters of type ArgumentParser Modifier and Type Method Description default <T> T
Argument. parse(ArgumentParser<T> parser)
Parses the argument using the specified parser. -
Uses of ArgumentParser in com.github.siroshun09.mccommand.common.argument.parser
Classes in com.github.siroshun09.mccommand.common.argument.parser that implement ArgumentParser Modifier and Type Class Description class
UUIDParser
Fields in com.github.siroshun09.mccommand.common.argument.parser declared as ArgumentParser Modifier and Type Field Description static ArgumentParser<Boolean>
BasicParser. BOOLEAN
static ArgumentParser<Double>
BasicParser. DOUBLE
static ArgumentParser<Float>
BasicParser. FLOAT
static ArgumentParser<Integer>
BasicParser. INTEGER
static ArgumentParser<Long>
BasicParser. LONG
static ArgumentParser<Short>
BasicParser. SHORT
static ArgumentParser<UUID>
BasicParser. UUID
Methods in com.github.siroshun09.mccommand.common.argument.parser that return ArgumentParser Modifier and Type Method Description static <R> ArgumentParser<R>
ArgumentParser. of(@NotNull Function<Argument,R> function)
Creates an instance of the parser fromFunction
. -
Uses of ArgumentParser in com.github.siroshun09.mccommand.paper.parser
Classes in com.github.siroshun09.mccommand.paper.parser that implement ArgumentParser Modifier and Type Class Description class
MaterialParser
class
OfflinePlayerParser
A class that parses anArgument
to anOfflinePlayer
.class
PlayerExactParser
class
PlayerParser
class
SoundParser
Fields in com.github.siroshun09.mccommand.paper.parser declared as ArgumentParser Modifier and Type Field Description static ArgumentParser<Material>
BukkitParser. MATERIAL
static ArgumentParser<OfflinePlayer>
BukkitParser. OFFLINE_PLAYER
static ArgumentParser<Player>
BukkitParser. PLAYER
static ArgumentParser<Player>
BukkitParser. PLAYER_EXACT
static ArgumentParser<Sound>
BukkitParser. SOUND
-