Record Class ServerPlayer.RespawnConfig

java.lang.Object
java.lang.Record
net.minecraft.server.level.ServerPlayer.RespawnConfig
Enclosing class:
ServerPlayer

public static record ServerPlayer.RespawnConfig(ResourceKey<Level> dimension, BlockPos pos, float angle, boolean forced) extends Record
  • Field Details

    • dimension

      private final ResourceKey<Level> dimension
      The field for the dimension record component.
    • pos

      private final BlockPos pos
      The field for the pos record component.
    • angle

      private final float angle
      The field for the angle record component.
    • forced

      private final boolean forced
      The field for the forced record component.
    • CODEC

      public static final com.mojang.serialization.Codec<ServerPlayer.RespawnConfig> CODEC
  • Constructor Details

    • RespawnConfig

      public RespawnConfig(ResourceKey<Level> dimension, BlockPos pos, float angle, boolean forced)
      Creates an instance of a RespawnConfig record class.
      Parameters:
      dimension - the value for the dimension record component
      pos - the value for the pos record component
      angle - the value for the angle record component
      forced - the value for the forced record component
  • Method Details

    • getDimensionOrDefault

      public static ResourceKey<Level> getDimensionOrDefault(@Nullable ServerPlayer.RespawnConfig p_405808_)
    • isSamePosition

      public boolean isSamePosition(@Nullable ServerPlayer.RespawnConfig p_405205_)
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • dimension

      public ResourceKey<Level> dimension()
      Returns the value of the dimension record component.
      Returns:
      the value of the dimension record component
    • pos

      public BlockPos pos()
      Returns the value of the pos record component.
      Returns:
      the value of the pos record component
    • angle

      public float angle()
      Returns the value of the angle record component.
      Returns:
      the value of the angle record component
    • forced

      public boolean forced()
      Returns the value of the forced record component.
      Returns:
      the value of the forced record component