Record Class DebugBreezeInfo
java.lang.Object
java.lang.Record
org.geysermc.mcprotocollib.protocol.data.game.debug.DebugBreezeInfo
- All Implemented Interfaces:
DebugInfo
public record DebugBreezeInfo(OptionalInt attackTarget, @Nullable org.cloudburstmc.math.vector.Vector3i jumpTarget)
extends Record
implements DebugInfo
-
Constructor Summary
ConstructorsConstructorDescriptionDebugBreezeInfo(OptionalInt attackTarget, @Nullable org.cloudburstmc.math.vector.Vector3i jumpTarget) Creates an instance of aDebugBreezeInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theattackTargetrecord component.final booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.@Nullable org.cloudburstmc.math.vector.Vector3iReturns the value of thejumpTargetrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DebugBreezeInfo
public DebugBreezeInfo(OptionalInt attackTarget, @Nullable @Nullable org.cloudburstmc.math.vector.Vector3i jumpTarget) Creates an instance of aDebugBreezeInforecord class.- Parameters:
attackTarget- the value for theattackTargetrecord componentjumpTarget- the value for thejumpTargetrecord 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). -
attackTarget
Returns the value of theattackTargetrecord component.- Returns:
- the value of the
attackTargetrecord component
-
jumpTarget
@Nullable public @Nullable org.cloudburstmc.math.vector.Vector3i jumpTarget()Returns the value of thejumpTargetrecord component.- Returns:
- the value of the
jumpTargetrecord component
-