Record Class WorldCoordinates

java.lang.Object
java.lang.Record
net.minecraft.commands.arguments.coordinates.WorldCoordinates
All Implemented Interfaces:
Coordinates

public record WorldCoordinates(WorldCoordinate x, WorldCoordinate y, WorldCoordinate z) extends Record implements Coordinates
  • Field Details

  • Constructor Details

    • WorldCoordinates

      public WorldCoordinates(WorldCoordinate x, WorldCoordinate y, WorldCoordinate z)
      Creates an instance of a WorldCoordinates record class.
      Parameters:
      x - the value for the x record component
      y - the value for the y record component
      z - the value for the z record component
  • Method Details

    • getPosition

      public Vec3 getPosition(CommandSourceStack pSource)
      Specified by:
      getPosition in interface Coordinates
    • getRotation

      public Vec2 getRotation(CommandSourceStack pSource)
      Specified by:
      getRotation in interface Coordinates
    • isXRelative

      public boolean isXRelative()
      Specified by:
      isXRelative in interface Coordinates
    • isYRelative

      public boolean isYRelative()
      Specified by:
      isYRelative in interface Coordinates
    • isZRelative

      public boolean isZRelative()
      Specified by:
      isZRelative in interface Coordinates
    • parseInt

      public static WorldCoordinates parseInt(com.mojang.brigadier.StringReader pReader) throws com.mojang.brigadier.exceptions.CommandSyntaxException
      Throws:
      com.mojang.brigadier.exceptions.CommandSyntaxException
    • parseDouble

      public static WorldCoordinates parseDouble(com.mojang.brigadier.StringReader pReader, boolean pCenterCorrect) throws com.mojang.brigadier.exceptions.CommandSyntaxException
      Throws:
      com.mojang.brigadier.exceptions.CommandSyntaxException
    • absolute

      public static WorldCoordinates absolute(double pX, double pY, double pZ)
    • absolute

      public static WorldCoordinates absolute(Vec2 pVector)
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • x

      public WorldCoordinate x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • y

      public WorldCoordinate y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component
    • z

      public WorldCoordinate z()
      Returns the value of the z record component.
      Returns:
      the value of the z record component