Package net.minecraft
Record Class class_9396.class_9399<S,T>
java.lang.Object
java.lang.Record
net.minecraft.class_9396.class_9399<S,T>
- Record Components:
action
-child
-
- All Implemented Interfaces:
class_9396<S,
T>
- Enclosing interface:
class_9396<S,
T>
public static record class_9396.class_9399<S,T> (class_9396.class_9397<S,T> action, class_9402<S> child)
extends Record
implements class_9396<S,T>
- Mappings:
Namespace Name official blg$c
intermediary net/minecraft/class_9396$class_9399
named net/minecraft/class_9396$class_9399
official a
intermediary comp_2476
named action
official b
intermediary comp_2477
named child
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.class_9396
class_9396.class_9397<S,
T>, class_9396.class_9398<T>, class_9396.class_9399<S, T> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final class_9396.class_9397
<S, T> The field for theaction
record component.private final class_9402
<S> The field for thechild
record component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaction()
Returns the value of theaction
record component.child()
Returns the value of thechild
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.method_58318
(class_9393<S> class_9393) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
class_9399
-
-
Method Details
-
method_58318
- Specified by:
method_58318
in interfaceclass_9396<S,
T> - Mappings:
Namespace Name Mixin selector official a
Lblg;a(Lblf;)Ljava/util/Optional;
intermediary method_58318
Lnet/minecraft/class_9396;method_58318(Lnet/minecraft/class_9393;)Ljava/util/Optional;
named method_58318
Lnet/minecraft/class_9396;method_58318(Lnet/minecraft/class_9393;)Ljava/util/Optional;
-
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)
. -
action
Returns the value of theaction
record component.- Returns:
- the value of the
action
record component
-
child
Returns the value of thechild
record component.- Returns:
- the value of the
child
record component
-