Record Class InsertingContents
java.lang.Object
java.lang.Record
net.neoforged.neoforge.common.util.InsertingContents
- All Implemented Interfaces:
ComponentContents
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.chat.ComponentContents
ComponentContents.Type<T extends ComponentContents>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<InsertingContents> private final int
The field for theindex
record component.private static final ThreadLocal
<Deque<TranslatableContents>> static final ComponentContents.Type
<InsertingContents> -
Constructor Summary
ConstructorDescriptionInsertingContents
(int index) Creates an instance of aInsertingContents
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
index()
Returns the value of theindex
record component.static void
static boolean
pushTranslation
(TranslatableContents contents) final String
toString()
Returns a string representation of this record class.type()
<T> Optional
<T> visit
(FormattedText.ContentConsumer<T> visitor) <T> Optional
<T> visit
(FormattedText.StyledContentConsumer<T> visitor, Style style) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.chat.ComponentContents
resolve
-
Field Details
-
index
private final int indexThe field for theindex
record component. -
CODEC
-
TYPE
-
TRANSLATION_STACK
-
-
Constructor Details
-
InsertingContents
public InsertingContents(int index) Creates an instance of aInsertingContents
record class.- Parameters:
index
- the value for theindex
record component
-
-
Method Details
-
pushTranslation
-
popTranslation
@Internal public static void popTranslation() -
visit
- Specified by:
visit
in interfaceComponentContents
-
visit
- Specified by:
visit
in interfaceComponentContents
-
type
- Specified by:
type
in interfaceComponentContents
-
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 '=='. -
index
public int index()Returns the value of theindex
record component.- Returns:
- the value of the
index
record component
-