Package net.minecraft.item.map
Record Class MapState.Marker
java.lang.Object
java.lang.Record
net.minecraft.item.map.MapState.Marker
- Record Components:
type
-x
-y
-rot
-
- Enclosing class:
MapState
private static record MapState.Marker(RegistryEntry<MapDecorationType> type, byte x, byte y, byte rot)
extends Record
- Mappings:
Namespace Name named net/minecraft/item/map/MapState$Marker
intermediary net/minecraft/class_22$class_9907
official evq$b
named type
intermediary comp_2974
official a
named x
intermediary comp_2975
official b
named y
intermediary comp_2976
official c
named rot
intermediary comp_2977
official d
-
Field Summary
Modifier and TypeFieldDescriptionprivate final byte
The field for therot
record component.private final RegistryEntry
<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
ConstructorDescriptionMarker
(RegistryEntry<MapDecorationType> registryEntry, byte byte2, byte byte3, byte byte4) -
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
-
Constructor Details
-
Marker
Marker(RegistryEntry<MapDecorationType> registryEntry, byte byte2, byte byte3, byte byte4)
-
-
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
-