CommandAPI 9.3.0
An API for the command UI introduced in Minecraft 1.13
dev.jorel.commandapi.arguments.IntegerArgument Class Reference

An argument that represents primitive Java ints. More...

+ Inheritance diagram for dev.jorel.commandapi.arguments.IntegerArgument:

Public Member Functions

 IntegerArgument (String nodeName)
 An integer argument. More...
 
 IntegerArgument (String nodeName, int min)
 An integer argument with a minimum value. More...
 
 IntegerArgument (String nodeName, int min, int max)
 An integer argument with a minimum and maximum value. More...
 
Class< Integer > getPrimitiveType ()
 
CommandAPIArgumentType getArgumentType ()
 
Function< S, String > getMapper ()
 

Static Public Member Functions

static< S > Function< S, String > fromKey (Function< S, NamespacedKey > mapper)
 

Detailed Description

An argument that represents primitive Java ints.

Since
1.1

Constructor & Destructor Documentation

◆ IntegerArgument() [1/3]

dev.jorel.commandapi.arguments.IntegerArgument.IntegerArgument ( String  nodeName)

An integer argument.

Parameters
nodeNamethe name of the node for this argument

◆ IntegerArgument() [2/3]

dev.jorel.commandapi.arguments.IntegerArgument.IntegerArgument ( String  nodeName,
int  min 
)

An integer argument with a minimum value.

Parameters
nodeNamethe name of the node for this argument
minThe minimum value this argument can take (inclusive)

◆ IntegerArgument() [3/3]

dev.jorel.commandapi.arguments.IntegerArgument.IntegerArgument ( String  nodeName,
int  min,
int  max 
)

An integer argument with a minimum and maximum value.

Parameters
nodeNamethe name of the node for this argument
minThe minimum value this argument can take (inclusive)
maxThe maximum value this argument can take (inclusive)

Member Function Documentation

◆ fromKey()

static< S > Function< S, String > dev.jorel.commandapi.arguments.SafeOverrideableArgument< T, S >.fromKey ( Function< S, NamespacedKey >  mapper)
staticinherited

Composes a S to a NamespacedKey mapping function to convert S to a String

Parameters
mapperthe mapping function from S to NamespacedKey
Returns
a composed function that converts S to String