Uses of Interface
org.javacord.api.entity.message.component.LowLevelComponent
-
-
Uses of LowLevelComponent in org.javacord.api.entity.message
Methods in org.javacord.api.entity.message with parameters of type LowLevelComponent Modifier and Type Method Description MessageBuilderMessageBuilder. addActionRow(LowLevelComponent... components)Add multiple low level components, wrapped in an ActionRow, to the message. -
Uses of LowLevelComponent in org.javacord.api.entity.message.component
Subinterfaces of LowLevelComponent in org.javacord.api.entity.message.component Modifier and Type Interface Description interfaceButtonThis interface represents a Button component.interfaceSelectMenuMethods in org.javacord.api.entity.message.component that return types with arguments of type LowLevelComponent Modifier and Type Method Description List<LowLevelComponent>ActionRow. getComponents()Get all the components of the action row.List<LowLevelComponent>ActionRowBuilder. getComponents()Get the low-level components of this action row.Methods in org.javacord.api.entity.message.component with parameters of type LowLevelComponent Modifier and Type Method Description ActionRowBuilderActionRowBuilder. addComponents(LowLevelComponent... components)Add multiple low-level component builders.static ActionRowActionRow. of(LowLevelComponent... lowLevelComponents)Create a new action row containing the given low level components, e.g.ActionRowBuilderActionRowBuilder. removeComponent(LowLevelComponent component)Remove a low-level component from the ActionRow.Method parameters in org.javacord.api.entity.message.component with type arguments of type LowLevelComponent Modifier and Type Method Description ActionRowBuilderActionRowBuilder. addComponents(List<LowLevelComponent> components)Add a list containing low-level components builders.static ActionRowActionRow. of(List<LowLevelComponent> lowLevelComponents)Create a new action row containing the given list with low level components, e.g. -
Uses of LowLevelComponent in org.javacord.api.entity.message.component.internal
Methods in org.javacord.api.entity.message.component.internal that return types with arguments of type LowLevelComponent Modifier and Type Method Description List<LowLevelComponent>ActionRowBuilderDelegate. getComponents()Get current low-level components.Methods in org.javacord.api.entity.message.component.internal with parameters of type LowLevelComponent Modifier and Type Method Description voidActionRowBuilderDelegate. removeComponent(LowLevelComponent component)Remove a low-level component from the ActionRow.Method parameters in org.javacord.api.entity.message.component.internal with type arguments of type LowLevelComponent Modifier and Type Method Description voidActionRowBuilderDelegate. addComponents(List<LowLevelComponent> components)Add multiple low-level components to the ActionRow. -
Uses of LowLevelComponent in org.javacord.api.entity.message.internal
Methods in org.javacord.api.entity.message.internal with parameters of type LowLevelComponent Modifier and Type Method Description voidMessageBuilderDelegate. addActionRow(LowLevelComponent... lowLevelComponents)Add low-level components to the message, wrapped in an ActionRow.
-