public abstract class RideQuery extends Object implements Parcelable
Modifier and Type | Class and Description |
---|---|
static class |
RideQuery.Builder |
static class |
RideQuery.SortType
In which order to sort the rides.
|
static class |
RideQuery.StatusFilter
Ride status filters.
|
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Constructor and Description |
---|
RideQuery() |
Modifier and Type | Method and Description |
---|---|
static RideQuery.Builder |
builder()
Returns a builder of
RideQuery objects. |
abstract Long |
getFromUpdateTime()
Return only rides that were updated since this time.
|
abstract Integer |
getLimit()
Limit number of results to return.
|
abstract RideQuery.SortType |
getSortBy()
In which order to sort the result.
|
abstract RideQuery.StatusFilter |
getStatusFilter()
Query only for rides with the given status filter.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
describeContents, writeToParcel
public abstract Long getFromUpdateTime()
public abstract Integer getLimit()
public abstract RideQuery.StatusFilter getStatusFilter()
ALL
public abstract RideQuery.SortType getSortBy()
UPDATE_TIME_ASC
public static RideQuery.Builder builder()
RideQuery
objects.