Package net.minecraft.command.arguments
Class Vec3Argument
- java.lang.Object
-
- net.minecraft.command.arguments.Vec3Argument
-
- All Implemented Interfaces:
com.mojang.brigadier.arguments.ArgumentType<ILocationArgument>
public class Vec3Argument extends java.lang.Object implements com.mojang.brigadier.arguments.ArgumentType<ILocationArgument>
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
centerCorrect
static com.mojang.brigadier.exceptions.SimpleCommandExceptionType
ERROR_MIXED_TYPE
static com.mojang.brigadier.exceptions.SimpleCommandExceptionType
ERROR_NOT_COMPLETE
private static java.util.Collection<java.lang.String>
EXAMPLES
-
Constructor Summary
Constructors Constructor Description Vec3Argument(boolean p_i47964_1_)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ILocationArgument
getCoordinates(com.mojang.brigadier.context.CommandContext<CommandSource> p_200385_0_, java.lang.String p_200385_1_)
java.util.Collection<java.lang.String>
getExamples()
static Vector3d
getVec3(com.mojang.brigadier.context.CommandContext<CommandSource> p_197300_0_, java.lang.String p_197300_1_)
<S> java.util.concurrent.CompletableFuture<com.mojang.brigadier.suggestion.Suggestions>
listSuggestions(com.mojang.brigadier.context.CommandContext<S> p_listSuggestions_1_, com.mojang.brigadier.suggestion.SuggestionsBuilder p_listSuggestions_2_)
ILocationArgument
parse(com.mojang.brigadier.StringReader p_parse_1_)
static Vec3Argument
vec3()
static Vec3Argument
vec3(boolean p_197303_0_)
-
-
-
Field Detail
-
EXAMPLES
private static final java.util.Collection<java.lang.String> EXAMPLES
-
ERROR_NOT_COMPLETE
public static final com.mojang.brigadier.exceptions.SimpleCommandExceptionType ERROR_NOT_COMPLETE
-
ERROR_MIXED_TYPE
public static final com.mojang.brigadier.exceptions.SimpleCommandExceptionType ERROR_MIXED_TYPE
-
centerCorrect
private final boolean centerCorrect
-
-
Method Detail
-
vec3
public static Vec3Argument vec3()
-
vec3
public static Vec3Argument vec3(boolean p_197303_0_)
-
getVec3
public static Vector3d getVec3(com.mojang.brigadier.context.CommandContext<CommandSource> p_197300_0_, java.lang.String p_197300_1_) throws com.mojang.brigadier.exceptions.CommandSyntaxException
- Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException
-
getCoordinates
public static ILocationArgument getCoordinates(com.mojang.brigadier.context.CommandContext<CommandSource> p_200385_0_, java.lang.String p_200385_1_)
-
parse
public ILocationArgument parse(com.mojang.brigadier.StringReader p_parse_1_) throws com.mojang.brigadier.exceptions.CommandSyntaxException
- Specified by:
parse
in interfacecom.mojang.brigadier.arguments.ArgumentType<ILocationArgument>
- Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException
-
listSuggestions
public <S> java.util.concurrent.CompletableFuture<com.mojang.brigadier.suggestion.Suggestions> listSuggestions(com.mojang.brigadier.context.CommandContext<S> p_listSuggestions_1_, com.mojang.brigadier.suggestion.SuggestionsBuilder p_listSuggestions_2_)
- Specified by:
listSuggestions
in interfacecom.mojang.brigadier.arguments.ArgumentType<ILocationArgument>
-
getExamples
public java.util.Collection<java.lang.String> getExamples()
- Specified by:
getExamples
in interfacecom.mojang.brigadier.arguments.ArgumentType<ILocationArgument>
-
-