Record Class Vector
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.Vector
-
Constructor Summary
ConstructorsConstructorDescriptionVector(int blockX, int blockY, int blockZ) Creates an instance of aVectorrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintblockX()Returns the value of theblockXrecord component.intblockY()Returns the value of theblockYrecord component.intblockZ()Returns the value of theblockZrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Vector
public Vector(int blockX, int blockY, int blockZ) Creates an instance of aVectorrecord class.- Parameters:
blockX- the value for theblockXrecord componentblockY- the value for theblockYrecord componentblockZ- the value for theblockZrecord 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. All components in this record class are compared with '=='. -
blockX
public int blockX()Returns the value of theblockXrecord component.- Returns:
- the value of the
blockXrecord component
-
blockY
public int blockY()Returns the value of theblockYrecord component.- Returns:
- the value of the
blockYrecord component
-
blockZ
public int blockZ()Returns the value of theblockZrecord component.- Returns:
- the value of the
blockZrecord component
-