Package net.minecraft.world.item
Record Class TooltipFlag.Default
java.lang.Object
java.lang.Record
net.minecraft.world.item.TooltipFlag.Default
- All Implemented Interfaces:
- TooltipFlag
- Enclosing interface:
- TooltipFlag
public static record TooltipFlag.Default(boolean advanced, boolean creative)
extends Record
implements TooltipFlag
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.world.item.TooltipFlagTooltipFlag.Default
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theadvancedrecord component.private final booleanThe field for thecreativerecord component.Fields inherited from interface net.minecraft.world.item.TooltipFlagADVANCED, NORMAL
- 
Constructor SummaryConstructorsConstructorDescriptionDefault(boolean advanced, boolean creative) Creates an instance of aDefaultrecord class.
- 
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- 
advancedprivate final boolean advancedThe field for theadvancedrecord component.
- 
creativeprivate final boolean creativeThe field for thecreativerecord component.
 
- 
- 
Constructor Details- 
Defaultpublic Default(boolean advanced, boolean creative) Creates an instance of aDefaultrecord class.- Parameters:
- advanced- the value for the- advancedrecord component
- creative- the value for the- creativerecord component
 
 
- 
- 
Method Details- 
isAdvancedpublic boolean isAdvanced()- Specified by:
- isAdvancedin interface- TooltipFlag
 
- 
isCreativepublic boolean isCreative()- Specified by:
- isCreativein interface- TooltipFlag
 
- 
asCreative
- 
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
 
 
-