Class Reaction

java.lang.Object
discord4j.core.object.reaction.Reaction
All Implemented Interfaces:
DiscordObject

public final class Reaction extends Object implements DiscordObject
A Discord message reaction.
See Also:
  • Constructor Details

    • Reaction

      public Reaction(GatewayDiscordClient gateway, discord4j.discordjson.json.ReactionData data)
      Constructs a Reaction with an associated GatewayDiscordClient and Discord data.
      Parameters:
      gateway - The GatewayDiscordClient associated to this object, must be non-null.
      data - The raw data as represented by Discord, must be non-null.
  • Method Details

    • getClient

      public GatewayDiscordClient getClient()
      Description copied from interface: DiscordObject
      Returns the GatewayDiscordClient that created this object. Methods in it are exclusively based on the entity cache or Store in use. Refer to calling getClient().rest() to access a DiscordClient that is capable of requesting entities directly from the REST API.
      Specified by:
      getClient in interface DiscordObject
      Returns:
      The GatewayDiscordClient associated to this object.
    • getData

      public discord4j.discordjson.json.ReactionData getData()
      Gets the data of the reaction.
      Returns:
      The data of the reaction.
    • getCount

      public int getCount()
      Gets the number of people who reacted with this reaction's emoji.
      Returns:
      The number of people who reacted with this reaction's emoji.
    • selfReacted

      public boolean selfReacted()
      Gets whether the current bot user reacted using this reaction's emoji.
      Returns:
      Whether the current bot user reacted using this reaction's emoji.
    • getEmoji

      public ReactionEmoji getEmoji()
      Gets this reaction's emoji.
      Returns:
      This reaction's emoji.
    • toString

      public String toString()
      Overrides:
      toString in class Object