Package net.minecraft
Record Class class_8464.class_8465
java.lang.Object
java.lang.Record
net.minecraft.class_8464.class_8465
- Record Components:
p0-p1-p2-
- Enclosing class:
class_8464
@Environment(CLIENT)
public static record class_8464.class_8465(Vector3f p0, Vector3f p1, Vector3f p2)
extends Record
- Mappings:
Namespace Name official fvi$aintermediary net/minecraft/class_8464$class_8465named net/minecraft/class_8464$class_8465official aintermediary comp_1450named p0official bintermediary comp_1451named p1official cintermediary comp_1452named p2
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.(package private) Collection<class_8464.class_8465>p0()Returns the value of thep0record component.p1()Returns the value of thep1record component.p2()Returns the value of thep2record component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
class_8465
-
-
Method Details
-
method_51056
Collection<class_8464.class_8465> method_51056()- Mappings:
Namespace Name Mixin selector official dLfvi$a;d()Ljava/util/Collection;intermediary method_51056Lnet/minecraft/class_8464$class_8465;method_51056()Ljava/util/Collection;named method_51056Lnet/minecraft/class_8464$class_8465;method_51056()Ljava/util/Collection;
-
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). -
p0
Returns the value of thep0record component.- Returns:
- the value of the
p0record component
-
p1
Returns the value of thep1record component.- Returns:
- the value of the
p1record component
-
p2
Returns the value of thep2record component.- Returns:
- the value of the
p2record component
-