Uses of Class
org.javacord.api.entity.message.component.TextInputStyle
-
Packages that use TextInputStyle Package Description org.javacord.api.entity.message.component org.javacord.api.entity.message.component.internal -
-
Uses of TextInputStyle in org.javacord.api.entity.message.component
Methods in org.javacord.api.entity.message.component that return TextInputStyle Modifier and Type Method Description static TextInputStyleTextInputStyle. fromId(int style)Gets a TextInputStyle by its id.static TextInputStyleTextInputStyle. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TextInputStyle[]TextInputStyle. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.javacord.api.entity.message.component that return types with arguments of type TextInputStyle Modifier and Type Method Description java.util.Optional<TextInputStyle>TextInput. getStyle()Get the text input's style.Methods in org.javacord.api.entity.message.component with parameters of type TextInputStyle Modifier and Type Method Description static TextInputTextInput. create(TextInputStyle style, java.lang.String customId, java.lang.String label)Creates a new text input with the given values.static TextInputTextInput. create(TextInputStyle style, java.lang.String customId, java.lang.String label, boolean required)Creates a new text input with the given values.static TextInputTextInput. create(TextInputStyle style, java.lang.String customId, java.lang.String label, java.lang.Integer minimumLength, java.lang.Integer maximumLength)Creates a new text input with the given values.static TextInputTextInput. create(TextInputStyle style, java.lang.String customId, java.lang.String label, java.lang.Integer minimumLength, java.lang.Integer maximumLength, boolean required)Creates a new text input with the given values.static TextInputTextInput. create(TextInputStyle style, java.lang.String customId, java.lang.String label, java.lang.String placeholder, java.lang.String value)Creates a new text input with the given values.static TextInputTextInput. create(TextInputStyle style, java.lang.String customId, java.lang.String label, java.lang.String placeholder, java.lang.String value, boolean required)Creates a new text input with the given values.TextInputBuilderTextInputBuilder. setStyle(TextInputStyle style)Set the Text Input's style.Constructors in org.javacord.api.entity.message.component with parameters of type TextInputStyle Constructor Description TextInputBuilder(TextInputStyle style, java.lang.String customId, java.lang.String label)Creates a new text input builder. -
Uses of TextInputStyle in org.javacord.api.entity.message.component.internal
Methods in org.javacord.api.entity.message.component.internal that return TextInputStyle Modifier and Type Method Description TextInputStyleTextInputBuilderDelegate. getStyle()Get the TextInput's style.Methods in org.javacord.api.entity.message.component.internal with parameters of type TextInputStyle Modifier and Type Method Description voidTextInputBuilderDelegate. setStyle(TextInputStyle style)Set the TextInput's style.
-