All Downloads are FREE. Search and download functionalities are using the official Maven repository.

twitter4jads.internal.models4j.URLEntity Maven / Gradle / Ivy

The newest version!
package twitter4jads.internal.models4j;

/**
 * A data interface representing one single URL entity.
 *
 *  Mocel - mocel at guma.jp
 * @since Twitter4J 2.1.9
 */
public interface URLEntity extends java.io.Serializable {

    /**
     * Returns the URL mentioned in the tweet.
     *
     * @return the mentioned URL
     */
    String getURL();

    /**
     * Returns the expanded URL if mentioned URL is shorten.
     *
     * @return the expanded URL if mentioned URL is shorten, or null if no shorten URL was mentioned.
     */
    String getExpandedURL();

    /**
     * Returns the display URL if mentioned URL is shorten.
     *
     * @return the display URL if mentioned URL is shorten, or null if no shorten URL was mentioned.
     */
    String getDisplayURL();

    /**
     * Returns the index of the start character of the URL mentioned in the tweet.
     *
     * @return the index of the start character of the URL mentioned in the tweet
     */
    int getStart();

    /**
     * Returns the index of the end character of the URL mentioned in the tweet.
     *
     * @return the index of the end character of the URL mentioned in the tweet
     */
    int getEnd();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy