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 record) -
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
-
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
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
pos
Returns the value of theposrecord component.- Returns:
- the value of the
posrecord component
-
poiType
-
freeTicketCount
public int freeTicketCount()Returns the value of thefreeTicketCountrecord component.- Returns:
- the value of the
freeTicketCountrecord component
-