Package net.minecraft.client.item
Record Class TooltipContext.Default
java.lang.Object
java.lang.Record
net.minecraft.client.item.TooltipContext.Default
- Record Components:
advanced
-creative
-
- All Implemented Interfaces:
TooltipContext
- Enclosing interface:
TooltipContext
public static record TooltipContext.Default(boolean advanced, boolean creative)
extends Record
implements TooltipContext
- Mappings:
Namespace Name official chl$a
intermediary net/minecraft/class_1836$class_1837
named net/minecraft/client/item/TooltipContext$Default
official c
intermediary comp_1152
named advanced
official d
intermediary comp_1153
named creative
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.client.item.TooltipContext
TooltipContext.Default
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
The field for theadvanced
record component.private final boolean
The field for thecreative
record component.Fields inherited from interface net.minecraft.client.item.TooltipContext
ADVANCED, BASIC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
advanced()
Returns the value of theadvanced
record component.boolean
creative()
Returns the value of thecreative
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.boolean
boolean
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
Default
public Default(boolean bool, boolean bool2)
-
-
Method Details
-
isAdvanced
public boolean isAdvanced()- Specified by:
isAdvanced
in interfaceTooltipContext
- Mappings:
Namespace Name Mixin selector official a
Lchl;a()Z
intermediary method_8035
Lnet/minecraft/class_1836;method_8035()Z
named isAdvanced
Lnet/minecraft/client/item/TooltipContext;isAdvanced()Z
-
isCreative
public boolean isCreative()- Specified by:
isCreative
in interfaceTooltipContext
- Mappings:
Namespace Name Mixin selector official b
Lchl;b()Z
intermediary method_47370
Lnet/minecraft/class_1836;method_47370()Z
named isCreative
Lnet/minecraft/client/item/TooltipContext;isCreative()Z
-
withCreative
- Mappings:
Namespace Name Mixin selector official c
Lchl$a;c()Lchl$a;
intermediary method_47371
Lnet/minecraft/class_1836$class_1837;method_47371()Lnet/minecraft/class_1836$class_1837;
named withCreative
Lnet/minecraft/client/item/TooltipContext$Default;withCreative()Lnet/minecraft/client/item/TooltipContext$Default;
-
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 '=='. -
advanced
public boolean advanced()Returns the value of theadvanced
record component.- Returns:
- the value of the
advanced
record component
-
creative
public boolean creative()Returns the value of thecreative
record component.- Returns:
- the value of the
creative
record component
-