Package net.minecraft.server.level
Record Class ServerPlayer.SavedPosition
java.lang.Object
java.lang.Record
net.minecraft.server.level.ServerPlayer.SavedPosition
- Enclosing class:
ServerPlayer
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Optional<ResourceKey<Level>> The field for thedimensionrecord component.static final ServerPlayer.SavedPositionstatic final com.mojang.serialization.MapCodec<ServerPlayer.SavedPosition> The field for thepositionrecord component.The field for therotationrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionSavedPosition(Optional<ResourceKey<Level>> dimension, Optional<Vec3> position, Optional<Vec2> rotation) Creates an instance of aSavedPositionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedimensionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.position()Returns the value of thepositionrecord component.rotation()Returns the value of therotationrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
dimension
The field for thedimensionrecord component. -
position
The field for thepositionrecord component. -
rotation
The field for therotationrecord component. -
MAP_CODEC
-
EMPTY
-
-
Constructor Details
-
SavedPosition
public SavedPosition(Optional<ResourceKey<Level>> dimension, Optional<Vec3> position, Optional<Vec2> rotation) Creates an instance of aSavedPositionrecord class.- Parameters:
dimension- the value for thedimensionrecord componentposition- the value for thepositionrecord componentrotation- the value for therotationrecord component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object). -
dimension
Returns the value of thedimensionrecord component.- Returns:
- the value of the
dimensionrecord component
-
position
Returns the value of thepositionrecord component.- Returns:
- the value of the
positionrecord component
-
rotation
Returns the value of therotationrecord component.- Returns:
- the value of the
rotationrecord component
-