Record Class DebugRaidsInfo
java.lang.Object
java.lang.Record
org.geysermc.mcprotocollib.protocol.data.game.debug.DebugRaidsInfo
- All Implemented Interfaces:
DebugInfo
-
Constructor Summary
ConstructorsConstructorDescriptionDebugRaidsInfo(List<org.cloudburstmc.math.vector.Vector3i> positions) Creates an instance of aDebugRaidsInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.List<org.cloudburstmc.math.vector.Vector3i>Returns the value of thepositionsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DebugRaidsInfo
Creates an instance of aDebugRaidsInforecord class.- Parameters:
positions- the value for thepositionsrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
positions
Returns the value of thepositionsrecord component.- Returns:
- the value of the
positionsrecord component
-