Package net.minecraft.text
Record Class LiteralTextContent
java.lang.Object
java.lang.Record
net.minecraft.text.LiteralTextContent
- Record Components:
string
-
- All Implemented Interfaces:
TextContent
- Mappings:
Namespace Name official uo
intermediary net/minecraft/class_2585
named net/minecraft/text/LiteralTextContent
official b
intermediary comp_737
named string
-
Field Summary
Fields inherited from interface net.minecraft.text.TextContent
EMPTY
-
Constructor Summary
ConstructorDescriptionLiteralTextContent
(String string) Creates an instance of aLiteralTextContent
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.string()
Returns the value of thestring
record component.toString()
Returns a string representation of this record class.<T> Optional<T>
visit
(StringVisitable.StyledVisitor<T> visitor, Style style) Visits this content.<T> Optional<T>
visit
(StringVisitable.Visitor<T> visitor) Visits this content.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.text.TextContent
parse
-
Field Details
-
string
The field for thestring
record component.
-
-
Constructor Details
-
LiteralTextContent
Creates an instance of aLiteralTextContent
record class.- Parameters:
string
- the value for thestring
record component
-
-
Method Details
-
visit
Visits this content. Returns a value if the visitor terminates amid the visit, orOptional.empty()
if it proceeds.- Specified by:
visit
in interfaceTextContent
- Returns:
Optional.empty()
if the visit finished, or a terminating result from thevisitor
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Ltk;a(Ltn$a;)Ljava/util/Optional;
intermediary method_27659
Lnet/minecraft/class_7417;method_27659(Lnet/minecraft/class_5348$class_5245;)Ljava/util/Optional;
named visit
Lnet/minecraft/text/TextContent;visit(Lnet/minecraft/text/StringVisitable$Visitor;)Ljava/util/Optional;
-
visit
Visits this content. Returns a value if the visitor terminates amid the visit, orOptional.empty()
if it proceeds.- Specified by:
visit
in interfaceTextContent
- Returns:
Optional.empty()
if the visit finished, or a terminating result from thevisitor
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Ltk;a(Ltn$b;Luf;)Ljava/util/Optional;
intermediary method_27660
Lnet/minecraft/class_7417;method_27660(Lnet/minecraft/class_5348$class_5246;Lnet/minecraft/class_2583;)Ljava/util/Optional;
named visit
Lnet/minecraft/text/TextContent;visit(Lnet/minecraft/text/StringVisitable$StyledVisitor;Lnet/minecraft/text/Style;)Ljava/util/Optional;
-
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)
. -
string
Returns the value of thestring
record component.- Returns:
- the value of the
string
record component
-