Package net.minecraft.item.tooltip
Record Class TooltipType.Default
java.lang.Object
java.lang.Record
net.minecraft.item.tooltip.TooltipType.Default
- Record Components:
- advanced-
- creative-
- All Implemented Interfaces:
- TooltipType
- Enclosing interface:
- TooltipType
public static record TooltipType.Default(boolean advanced, boolean creative)
extends Record
implements TooltipType
- Mappings:
- Namespace - Name - named - net/minecraft/item/tooltip/TooltipType$Default- intermediary - net/minecraft/class_1836$class_1837- official - cyi$a- named - advanced- intermediary - comp_1152- official - c- named - creative- intermediary - comp_1153- official - d
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.item.tooltip.TooltipTypeTooltipType.Default
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theadvancedrecord component.private final booleanThe field for thecreativerecord component.Fields inherited from interface net.minecraft.item.tooltip.TooltipTypeADVANCED, BASIC
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanadvanced()Returns the value of theadvancedrecord component.booleancreative()Returns the value of thecreativerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanbooleanfinal StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
Defaultpublic Default(boolean bool, boolean bool2) 
 
- 
- 
Method Details- 
isAdvancedpublic boolean isAdvanced()- Specified by:
- isAdvancedin interface- TooltipType
- Mappings:
- Namespace - Name - Mixin selector - named - isAdvanced- Lnet/minecraft/item/tooltip/TooltipType;isAdvanced()Z- intermediary - method_8035- Lnet/minecraft/class_1836;method_8035()Z- official - a- Lcyi;a()Z
 
- 
isCreativepublic boolean isCreative()- Specified by:
- isCreativein interface- TooltipType
- Mappings:
- Namespace - Name - Mixin selector - named - isCreative- Lnet/minecraft/item/tooltip/TooltipType;isCreative()Z- intermediary - method_47370- Lnet/minecraft/class_1836;method_47370()Z- official - b- Lcyi;b()Z
 
- 
withCreative- Mappings:
- Namespace - Name - Mixin selector - named - withCreative- Lnet/minecraft/item/tooltip/TooltipType$Default;withCreative()Lnet/minecraft/item/tooltip/TooltipType$Default;- intermediary - method_47371- Lnet/minecraft/class_1836$class_1837;method_47371()Lnet/minecraft/class_1836$class_1837;- official - c- Lcyi$a;c()Lcyi$a;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
advancedpublic boolean advanced()Returns the value of theadvancedrecord component.- Returns:
- the value of the advancedrecord component
 
- 
creativepublic boolean creative()Returns the value of thecreativerecord component.- Returns:
- the value of the creativerecord component
 
 
-