Record Class MapItemSavedData.MapDecorationLocation
java.lang.Object
java.lang.Record
net.minecraft.world.level.saveddata.maps.MapItemSavedData.MapDecorationLocation
- Enclosing class:
MapItemSavedData
static record MapItemSavedData.MapDecorationLocation(Holder<MapDecorationType> type, byte x, byte y, byte rot)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final byte
The field for therot
record component.private final Holder
<MapDecorationType> The field for thetype
record component.private final byte
The field for thex
record component.private final byte
The field for they
record component. -
Constructor Summary
ConstructorsConstructorDescriptionMapDecorationLocation
(Holder<MapDecorationType> type, byte x, byte y, byte rot) Creates an instance of aMapDecorationLocation
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.byte
rot()
Returns the value of therot
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.byte
x()
Returns the value of thex
record component.byte
y()
Returns the value of they
record component.
-
Field Details
-
type
The field for thetype
record component. -
x
private final byte xThe field for thex
record component. -
y
private final byte yThe field for they
record component. -
rot
private final byte rotThe field for therot
record component.
-
-
Constructor Details
-
MapDecorationLocation
MapDecorationLocation(Holder<MapDecorationType> type, byte x, byte y, byte rot) Creates an instance of aMapDecorationLocation
record class.- Parameters:
type
- the value for thetype
record componentx
- the value for thex
record componenty
- the value for they
record componentrot
- the value for therot
record 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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
x
public byte x()Returns the value of thex
record component.- Returns:
- the value of the
x
record component
-
y
public byte y()Returns the value of they
record component.- Returns:
- the value of the
y
record component
-
rot
public byte rot()Returns the value of therot
record component.- Returns:
- the value of the
rot
record component
-