Class GeocodedWaypoint

  • All Implemented Interfaces:
    java.io.Serializable

    public class GeocodedWaypoint
    extends java.lang.Object
    implements java.io.Serializable
    A point in a Directions API response; either the origin, one of the requested waypoints, or the destination. Please see Geocoded Waypoints for more detail.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      GeocodedWaypointStatus geocoderStatus
      The status code resulting from the geocoding operation for this waypoint.
      boolean partialMatch
      Indicates that the geocoder did not return an exact match for the original request, though it was able to match part of the requested address.
      java.lang.String placeId
      A unique identifier for this waypoint that can be used with other Google APIs.
      AddressType[] types
      The address types of the geocoding result used for calculating directions.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • geocoderStatus

        public GeocodedWaypointStatus geocoderStatus
        The status code resulting from the geocoding operation for this waypoint.
      • partialMatch

        public boolean partialMatch
        Indicates that the geocoder did not return an exact match for the original request, though it was able to match part of the requested address.
      • placeId

        public java.lang.String placeId
        A unique identifier for this waypoint that can be used with other Google APIs.
      • types

        public AddressType[] types
        The address types of the geocoding result used for calculating directions.
    • Constructor Detail

      • GeocodedWaypoint

        public GeocodedWaypoint()
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object