Class TextInputType
java.lang.Object
com.pixelmonmod.pixelmon.api.ui.type.TextInputType
This input type represents a single String input from the user
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<TextInputType>
protected net.minecraft.network.chat.Component
protected String
-
Constructor Summary
ModifierConstructorDescriptionprotected
TextInputType
(String value, net.minecraft.network.chat.Component label) -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.Codec<? extends InputType<?>>
codec()
The codec used for encoding and decoding the data when transferring between the client and serverList<net.minecraft.client.gui.layouts.Layout>
static TextInputType
Creates a new text input typevoid
Sets the value of the inputvalue()
The current value of the input
-
Field Details
-
CODEC
-
label
protected net.minecraft.network.chat.Component label -
value
-
-
Constructor Details
-
TextInputType
-
-
Method Details
-
of
Creates a new text input type- Parameters:
value
- The current valuelabel
- The label to display- Returns:
- The new text input type
-
codec
Description copied from interface:InputType
The codec used for encoding and decoding the data when transferring between the client and server -
value
Description copied from interface:InputType
The current value of the input -
setValue
Description copied from interface:InputType
Sets the value of the input -
getWidget
-