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$a
intermediary net/minecraft/class_8464$class_8465
named net/minecraft/class_8464$class_8465
official a
intermediary comp_1450
named p0
official b
intermediary comp_1451
named p1
official c
intermediary comp_1452
named p2
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.(package private) Collection<class_8464.class_8465>
p0()
Returns the value of thep0
record component.p1()
Returns the value of thep1
record component.p2()
Returns the value of thep2
record component.final String
toString()
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 d
Lfvi$a;d()Ljava/util/Collection;
intermediary method_51056
Lnet/minecraft/class_8464$class_8465;method_51056()Ljava/util/Collection;
named method_51056
Lnet/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 thep0
record component.- Returns:
- the value of the
p0
record component
-
p1
Returns the value of thep1
record component.- Returns:
- the value of the
p1
record component
-
p2
Returns the value of thep2
record component.- Returns:
- the value of the
p2
record component
-