implements Result
A DataBuffer
that represents a list of AutocompletePredictions
.
NOTE: The calling application must release()
this object after it is done with it to prevent a memory leak. Refer to the developer's guide for more
information about handling buffers.
Public Method Summary
AutocompletePrediction |
get(int position)
Get the item at the specified position.
|
Status |
getStatus()
Returns the status of this result.
|
Inherited Method Summary
Public Methods
public AutocompletePrediction get (int position)
Get the item at the specified position. Note that the objects returned from subsequent invocations of this method for the same position may not be identical objects, but will be equal in value. In other words:
buffer.get(i) == buffer.get(i)
may return false.
buffer.get(i).equals(buffer.get(i))
will return true.
Parameters
position | The position of the item to retrieve. |
---|
Returns
- the item at
position
in this buffer.
public Status getStatus ()
Returns the status of this result. Use isSuccess()
to determine whether the call was successful, and getStatusCode()
to determine what the error cause was.
Certain errors are due to failures that can be resolved by launching a particular
intent. The resolution intent is available via getResolution()
.