static CommandArgument<String> |
CommandArgument.of(String value) |
Represents a CommandArgument with a specific String value
Note: this argument indicates this position is a known String value.
|
static <V> CommandArgument<V> |
CommandArgument.of(DataConverter<V> defaultDataConverter) |
Represents an unknown CommandArgument with a specific DataConverter
Note: this argument indicates this position need a V type value
|
static <V> CommandArgument<V> |
CommandArgument.of(DataConverter<V> dataConverter,
V value) |
Represents a CommandArgument with a specific value
Note: this argument indicates this position is a known V value.
|
static CommandArgument<Integer> |
CommandArgument.ofInt() |
Represents an unknown Int CommandArgument
Note: this argument indicates this position need an Int value.
|
static CommandArgument<Long> |
CommandArgument.ofLong() |
Represent an unknown Long CommandArgument
Note: this argument indicates this position need a Long value.
|
static <V> CommandArgument<V> |
CommandArgument.ofNullable(DataConverter<V> dataConverter) |
Represents a nullable CommandArgument with a specific DataConverter
Note: this argument indicates this position is a nullable value.
|
static CommandArgument<String> |
CommandArgument.ofString() |
Represent an unknown String CommandArgument
Note: this argument indicates this position need a String value.
|