Interface Activity

    • Method Detail

      • getUrl

        @Nullable
        String getUrl()
        The URL of the Activity if the game is actually a Stream.
        This will return null for regular games.
        Returns:
        Possibly-null String containing the Activity's URL.
      • streaming

        @Nonnull
        static Activity streaming​(@Nonnull
                                  String name,
                                  @Nullable
                                  String url)
        Creates a new Activity instance with the specified name and url.
        The specified URL must be valid according to discord standards in order to display as "streaming" in the official client. A valid streaming URL must be derived from https://twitch.tv/ or https://youtube.com/watch?v= and can be verified using isValidStreamingUrl(String). (see documentation)
        Parameters:
        name - The not-null name of the newly created game
        url - The streaming url to use, required to display as "streaming"
        Returns:
        A valid Activity instance with the provided name and url
        Throws:
        IllegalArgumentException - If the specified name is null, empty or longer than 128 characters
        See Also:
        isValidStreamingUrl(String)
      • listening

        @Nonnull
        static Activity listening​(@Nonnull
                                  String name)
        Creates a new Activity instance with the specified name.
        This will display as Listening name in the official client
        Parameters:
        name - The not-null name of the newly created game
        Returns:
        A valid Activity instance with the provided name with Activity.ActivityType.LISTENING
        Throws:
        IllegalArgumentException - if the specified name is null, empty, blank or longer than 128 characters
      • watching

        @Nonnull
        @Incubating
        static Activity watching​(@Nonnull
                                 String name)
        Creates a new Activity instance with the specified name.
        This will display as Watching name in the official client
        Parameters:
        name - The not-null name of the newly created game
        Returns:
        A valid Activity instance with the provided name with Activity.ActivityType.WATCHING
        Throws:
        IllegalArgumentException - if the specified name is null, empty, blank or longer than 128 characters
        Incubating:
        This feature is not yet confirmed for the official bot API
      • competing

        @Nonnull
        static Activity competing​(@Nonnull
                                  String name)
        Creates a new Activity instance with the specified name.
        This will display as Competing in name in the official client
        Parameters:
        name - The not-null name of the newly created game
        Returns:
        A valid Activity instance with the provided name with Activity.ActivityType.COMPETING
        Throws:
        IllegalArgumentException - If the specified name is null, empty, blank or longer than 128 characters
        Since:
        4.2.1
      • isValidStreamingUrl

        static boolean isValidStreamingUrl​(@Nullable
                                           String url)
        Checks if a given String is a valid Twitch/Youtube streaming url (ie, one that will display "Streaming" on the Discord client).
        Parameters:
        url - The url to check.
        Returns:
        True if the provided url is valid for triggering Discord's streaming status