java.lang.Object |
↳ |
com.google.android.gms.fitness.request.SessionInsertRequest.Builder |
Class Overview
Builder used to create new SessionInsertRequest.
Summary
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
public
SessionInsertRequest.Builder
()
Public Methods
Adds the specified aggregate data point to this request. Only one aggregate data point
per data source is allowed.
Note: removing the session will not delete the data point. To remove the data that was
inserted along with a session, use
deleteData(GoogleApiClient, DataDeleteRequest)
.
Parameters |
aggregateDataPoint |
DataPoint
|
Throws |
IllegalArgumentException |
if the data point is null |
IllegalStateException |
if an aggregate data point for this data source
is already added |
IllegalArgumentException |
if the aggregate data point is invalid
|
Adds the specified data set to this request. Only one data set per data source is
allowed.
Note: removing the session will not delete the data point. To remove the data that was
inserted along with a session, use
deleteData(GoogleApiClient, DataDeleteRequest)
.
Parameters |
dataSet |
DataSet
|
Throws |
IllegalArgumentException |
if the data set is null or empty |
IllegalStateException |
if data set for this data source is already
added
|
Finishes building and returns the request.
Throws |
IllegalStateException |
if the builder doesn't have enough state to
create a valid request
|
Sets the session for this request.
Parameters |
session |
Session
|