Record Class DebugPoiInfo
java.lang.Object
java.lang.Record
org.geysermc.mcprotocollib.protocol.data.game.debug.DebugPoiInfo
- All Implemented Interfaces:
DebugInfo
-
Constructor Summary
ConstructorsConstructorDescriptionDebugPoiInfo(org.cloudburstmc.math.vector.Vector3i pos, int poiType, int freeTicketCount) Creates an instance of aDebugPoiInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.intReturns the value of thefreeTicketCountrecord component.getType()final inthashCode()Returns a hash code value for this object.intpoiType()Returns the value of thepoiTyperecord component.org.cloudburstmc.math.vector.Vector3ipos()Returns the value of theposrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DebugPoiInfo
public DebugPoiInfo(org.cloudburstmc.math.vector.Vector3i pos, int poiType, int freeTicketCount) 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
-
getType
-
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
public org.cloudburstmc.math.vector.Vector3i pos()Returns the value of theposrecord component.- Returns:
- the value of the
posrecord component
-
poiType
public int 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
-