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

twitter4j.Place Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package twitter4j;

/**
 * @author Yusuke Yamamoto - yusuke at mac.com
 * @since Twitter4J 2.1.1
 */
public interface Place extends TwitterResponse, Comparable, java.io.Serializable {
    String getName();

    String getStreetAddress();

    String getCountryCode();

    String getId();

    String getCountry();

    String getPlaceType();

    String getURL();

    String getFullName();

    String getBoundingBoxType();

    GeoLocation[][] getBoundingBoxCoordinates();

    String getGeometryType();

    GeoLocation[][] getGeometryCoordinates();

    Place[] getContainedWithIn();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy