Package net.minecraft.util.debug
Record Class DebugPoiInfo
java.lang.Object
java.lang.Record
net.minecraft.util.debug.DebugPoiInfo
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thefreeTicketCountrecord component.The field for thepoiTyperecord component.private final BlockPosThe field for theposrecord component.static final StreamCodec<RegistryFriendlyByteBuf, DebugPoiInfo> -
Constructor Summary
ConstructorsConstructorDescriptionDebugPoiInfo(BlockPos pos, Holder<PoiType> poiType, int freeTicketCount) Creates an instance of aDebugPoiInforecord class.DebugPoiInfo(PoiRecord p_449234_) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.intReturns the value of thefreeTicketCountrecord component.final inthashCode()Returns a hash code value for this object.poiType()Returns the value of thepoiTyperecord component.pos()Returns the value of theposrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
pos
The field for theposrecord component. -
poiType
The field for thepoiTyperecord component. -
freeTicketCount
private final int freeTicketCountThe field for thefreeTicketCountrecord component. -
STREAM_CODEC
-
-
Constructor Details
-
DebugPoiInfo
-
DebugPoiInfo
Creates an instance of aDebugPoiInforecord class.- Parameters:
pos- the value for theposrecord componentpoiType- the value for thepoiTyperecord componentfreeTicketCount- the value for thefreeTicketCountrecord 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 '=='. -
pos
Returns the value of theposrecord component.- Returns:
- the value of the
posrecord component
-
poiType
Returns the value of thepoiTyperecord component.- Returns:
- the value of the
poiTyperecord component
-
freeTicketCount
public int freeTicketCount()Returns the value of thefreeTicketCountrecord component.- Returns:
- the value of the
freeTicketCountrecord component
-