Uses of Interface
org.javacord.api.entity.sticker.Sticker
-
-
Uses of Sticker in org.javacord.api
Methods in org.javacord.api that return types with arguments of type Sticker Modifier and Type Method Description java.util.Optional<Sticker>DiscordApi. getStickerById(long id)Gets a sticker by its ID.default java.util.Optional<Sticker>DiscordApi. getStickerById(java.lang.String id)Gets a sticker by its ID.java.util.concurrent.CompletableFuture<Sticker>DiscordApi. requestStickerById(long id)Requests a sticker by its ID from the Discord API.default java.util.concurrent.CompletableFuture<Sticker>DiscordApi. requestStickerById(java.lang.String id)Requests a sticker by its ID from the Discord API. -
Uses of Sticker in org.javacord.api.entity.message
Methods in org.javacord.api.entity.message with parameters of type Sticker Modifier and Type Method Description MessageBuilderMessageBuilder. addSticker(Sticker sticker)Adds a sticker to the message.Method parameters in org.javacord.api.entity.message with type arguments of type Sticker Modifier and Type Method Description MessageBuilderMessageBuilder. addStickers(java.util.Collection<Sticker> stickers)Adds stickers to the message. -
Uses of Sticker in org.javacord.api.entity.server
Methods in org.javacord.api.entity.server that return types with arguments of type Sticker Modifier and Type Method Description default java.util.Optional<Sticker>Server. getStickerById(long id)Gets a sticker by its ID.default java.util.Optional<Sticker>Server. getStickerById(java.lang.String id)Gets a sticker by its ID.java.util.Set<Sticker>Server. getStickers()Gets the stickers of this server.default java.util.Set<Sticker>Server. getStickersByName(java.lang.String name)Gets stickers by their name.default java.util.Set<Sticker>Server. getStickersByNameIgnoreCase(java.lang.String name)Gets stickers by their name.java.util.concurrent.CompletableFuture<Sticker>Server. requestStickerById(long id)Requests a sticker by its ID from the Discord API without checking the cache.default java.util.concurrent.CompletableFuture<Sticker>Server. requestStickerById(java.lang.String id)Requests a sticker by its ID from the Discord API without checking the cache.java.util.concurrent.CompletableFuture<java.util.Set<Sticker>>Server. requestStickers()Requests the sticker of this server from the Discord API without checking the cache. -
Uses of Sticker in org.javacord.api.entity.sticker
Methods in org.javacord.api.entity.sticker that return types with arguments of type Sticker Modifier and Type Method Description static java.util.concurrent.CompletableFuture<Sticker>Sticker. create(Server server, java.lang.String name, java.lang.String tags, java.io.File file)Creates a new sticker with the given values.static java.util.concurrent.CompletableFuture<Sticker>Sticker. create(Server server, java.lang.String name, java.lang.String description, java.lang.String tags, java.io.File file)Creates a new sticker with the given values.static java.util.concurrent.CompletableFuture<Sticker>Sticker. create(Server server, java.lang.String name, java.lang.String description, java.lang.String tags, java.io.File file, java.lang.String reason)Creates a new sticker with the given values.java.util.concurrent.CompletableFuture<Sticker>StickerBuilder. create()Creates a newStickerobject with the given values.java.util.concurrent.CompletableFuture<Sticker>StickerBuilder. create(java.lang.String reason)Creates a newStickerobject with the given values.java.util.Set<Sticker>StickerPack. getStickers()Gets the stickers in this pack.default java.util.concurrent.CompletableFuture<Sticker>Sticker. update(java.lang.String name, java.lang.String description, java.lang.String tags)Updates the sticker with the given values.default java.util.concurrent.CompletableFuture<Sticker>Sticker. update(java.lang.String name, java.lang.String description, java.lang.String tags, java.lang.String reason)Updates the sticker with the given values.java.util.concurrent.CompletableFuture<Sticker>StickerUpdater. update()Updates the sticker.java.util.concurrent.CompletableFuture<Sticker>StickerUpdater. update(java.lang.String reason)Updates the sticker.default java.util.concurrent.CompletableFuture<Sticker>Sticker. updateDescription(java.lang.String description)Updates the description of the sticker.default java.util.concurrent.CompletableFuture<Sticker>Sticker. updateDescription(java.lang.String description, java.lang.String reason)Updates the description of the sticker.default java.util.concurrent.CompletableFuture<Sticker>Sticker. updateName(java.lang.String name)Updates the name of the sticker.default java.util.concurrent.CompletableFuture<Sticker>Sticker. updateName(java.lang.String name, java.lang.String reason)Updates the name of the sticker.default java.util.concurrent.CompletableFuture<Sticker>Sticker. updateTags(java.lang.String tags)Updates the tags of the sticker.default java.util.concurrent.CompletableFuture<Sticker>Sticker. updateTags(java.lang.String tags, java.lang.String reason)Updates the tags of the sticker. -
Uses of Sticker in org.javacord.api.entity.sticker.internal
Methods in org.javacord.api.entity.sticker.internal that return types with arguments of type Sticker Modifier and Type Method Description java.util.concurrent.CompletableFuture<Sticker>StickerBuilderDelegate. create()Creates a newStickerobject with the given values.java.util.concurrent.CompletableFuture<Sticker>StickerBuilderDelegate. create(java.lang.String reason)Creates a newStickerobject with the given values.java.util.concurrent.CompletableFuture<Sticker>StickerUpdaterDelegate. update()Updates the sticker with the given values.java.util.concurrent.CompletableFuture<Sticker>StickerUpdaterDelegate. update(java.lang.String reason)Updates the sticker with the given values.Methods in org.javacord.api.entity.sticker.internal with parameters of type Sticker Modifier and Type Method Description voidStickerBuilderDelegate. copy(Sticker sticker)Copies the values of the sticker into the builder. -
Uses of Sticker in org.javacord.api.event.server.sticker
Methods in org.javacord.api.event.server.sticker that return Sticker Modifier and Type Method Description StickerStickerEvent. getSticker()Gets the sticker of the event.
-