Package net.minecraft
Record Class class_9259.class_9260<T>
java.lang.Object
java.lang.Record
net.minecraft.class_9259.class_9260<T>
- Record Components:
error
-
- All Implemented Interfaces:
class_9259<T>
- Enclosing interface:
class_9259<T>
public static record class_9259.class_9260<T>(Supplier<String> error)
extends Record
implements class_9259<T>
- Mappings:
Namespace Name official apc$a
intermediary net/minecraft/class_9259$class_9260
named net/minecraft/class_9259$class_9260
official a
intermediary comp_2367
named error
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.class_9259
class_9259.class_9260<T>, class_9259.class_9261<T>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.error()
Returns the value of theerror
record component.final int
hashCode()
Returns a hash code value for this object.boolean
method_57126
(Consumer<T> consumer) <R> class_9259
<R> method_57127
(Function<T, R> function) method_57130
(T t) method_57132
(Supplier<E> supplier) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
error
The field for theerror
record component.
-
-
Constructor Details
-
class_9260
-
-
Method Details
-
method_57122
public boolean method_57122()- Specified by:
method_57122
in interfaceclass_9259<T>
- Mappings:
Namespace Name Mixin selector official a
Lapc;a()Z
intermediary method_57122
Lnet/minecraft/class_9259;method_57122()Z
named method_57122
Lnet/minecraft/class_9259;method_57122()Z
-
method_57130
- Specified by:
method_57130
in interfaceclass_9259<T>
- Mappings:
Namespace Name Mixin selector official b
Lapc;b(Ljava/lang/Object;)Ljava/lang/Object;
intermediary method_57130
Lnet/minecraft/class_9259;method_57130(Ljava/lang/Object;)Ljava/lang/Object;
named method_57130
Lnet/minecraft/class_9259;method_57130(Ljava/lang/Object;)Ljava/lang/Object;
-
method_57129
- Specified by:
method_57129
in interfaceclass_9259<T>
- Mappings:
Namespace Name Mixin selector official b
Lapc;b()Ljava/lang/String;
intermediary method_57129
Lnet/minecraft/class_9259;method_57129()Ljava/lang/String;
named method_57129
Lnet/minecraft/class_9259;method_57129()Ljava/lang/String;
-
method_57126
- Specified by:
method_57126
in interfaceclass_9259<T>
- Mappings:
Namespace Name Mixin selector official a
Lapc;a(Ljava/util/function/Consumer;)Lapc;
intermediary method_57126
Lnet/minecraft/class_9259;method_57126(Ljava/util/function/Consumer;)Lnet/minecraft/class_9259;
named method_57126
Lnet/minecraft/class_9259;method_57126(Ljava/util/function/Consumer;)Lnet/minecraft/class_9259;
-
method_57127
- Specified by:
method_57127
in interfaceclass_9259<T>
- Mappings:
Namespace Name Mixin selector official a
Lapc;a(Ljava/util/function/Function;)Lapc;
intermediary method_57127
Lnet/minecraft/class_9259;method_57127(Ljava/util/function/Function;)Lnet/minecraft/class_9259;
named method_57127
Lnet/minecraft/class_9259;method_57127(Ljava/util/function/Function;)Lnet/minecraft/class_9259;
-
method_57132
- Specified by:
method_57132
in interfaceclass_9259<T>
- Throws:
E
- Mappings:
Namespace Name Mixin selector official b
Lapc;b(Ljava/util/function/Supplier;)Ljava/lang/Object;
intermediary method_57132
Lnet/minecraft/class_9259;method_57132(Ljava/util/function/Supplier;)Ljava/lang/Object;
named method_57132
Lnet/minecraft/class_9259;method_57132(Ljava/util/function/Supplier;)Ljava/lang/Object;
-
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)
. -
error
Returns the value of theerror
record component.- Returns:
- the value of the
error
record component
-