public abstract class RideQueryResponse extends Object implements Parcelable
RideQuery
; contains the list of rides that match the query filters.Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Constructor and Description |
---|
RideQueryResponse() |
Modifier and Type | Method and Description |
---|---|
static RideQueryResponse |
create(List<Ride> rides,
long fromTime,
long toTime)
Create a new RideQueryResponse.
|
abstract long |
getFromTime()
The earliest update time in this result set.
|
abstract List<Ride> |
getRides()
List of rides matching the query filters.
|
abstract long |
getToTime()
The latest update time in this result set.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
describeContents, writeToParcel
public abstract long getFromTime()
public abstract long getToTime()
public static RideQueryResponse create(List<Ride> rides, long fromTime, long toTime)