Class AutocompletePrediction

  • All Implemented Interfaces:
    java.io.Serializable

    public class AutocompletePrediction
    extends java.lang.Object
    implements java.io.Serializable
    Represents a single Autocomplete result returned from the Google Places API Web Service.

    Please see Query Autocomplete Responses for more detail.

    See Also:
    Serialized Form
    • Field Detail

      • description

        public java.lang.String description
        Description of the matched prediction.
      • placeId

        public java.lang.String placeId
        The Place ID of the place.
      • types

        public java.lang.String[] types
        An array indicating the type of the address component.

        Please see supported types for a list of types that can be returned.

      • terms

        public AutocompletePrediction.Term[] terms
        An array of terms identifying each section of the returned description. (A section of the description is generally terminated with a comma.) Each entry in the array has a value field, containing the text of the term, and an offset field, defining the start position of this term in the description, measured in Unicode characters.
      • matchedSubstrings

        public AutocompletePrediction.MatchedSubstring[] matchedSubstrings
        The locations of the entered term in the prediction result text, so that the term can be highlighted if desired.
    • Constructor Detail

      • AutocompletePrediction

        public AutocompletePrediction()
    • Method Detail

      • toString

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