net.minestom.server.command.builder.arguments.relative.ArgumentRelativeBlockPosition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.command.builder.arguments.relative;
import org.jetbrains.annotations.NotNull;
import java.util.function.Function;
/**
* Represents a block position with 3 integers (x;y;z) which can take relative coordinates.
*
* Example: 5 ~ -3
*/
public class ArgumentRelativeBlockPosition extends ArgumentRelativeVec {
public ArgumentRelativeBlockPosition(@NotNull String id) {
super(id, 3);
}
@Override
public String parser() {
return "minecraft:block_pos";
}
@Override
public String toString() {
return String.format("RelativeBlockPosition<%s>", getId());
}
@Override
Function getRelativeNumberParser() {
return Double::parseDouble;
}
@Override
Function getAbsoluteNumberParser() {
return Integer::parseInt;
}
}