Record Class CommandArguments

java.lang.Object
java.lang.Record
dev.jorel.commandapi.executors.CommandArguments
Record Components:
args - The arguments for this command
argsMap - The arguments for this command mapped to their node names. This is an ordered map
rawArgs - The raw arguments for this command.
rawArgsMap - The raw arguments for this command mapped to their node names. This is an ordered map
fullInput - The command string a player has entered (including the /)

public record CommandArguments(Object[] args, Map<String,Object> argsMap, String[] rawArgs, Map<String,String> rawArgsMap, String fullInput) extends Record
This class stores the arguments for this command