java.lang.Object | |
↳ | android.content.ContentProviderOperation.Builder |
Used to add parameters to a ContentProviderOperation
. The ContentProviderOperation.Builder
is
first created by calling newInsert(android.net.Uri)
,
newUpdate(android.net.Uri)
,
newDelete(android.net.Uri)
or
newAssertQuery(Uri)
. The withXXX methods
can then be used to add parameters to the builder. See the specific methods to find for
which ContentProviderOperation.Builder
type each is allowed. Call build()
to create the
ContentProviderOperation
once all the parameters have been supplied.
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Create a ContentProviderOperation from this ContentProviderOperation.Builder
.
If set then if the number of rows affected by this operation do not match
this count OperationApplicationException
will be throw.
This can only be used with builders of type update, delete, or assert.
The selection and arguments to use. An occurrence of '?' in the selection will be
replaced with the corresponding occurence of the selection argument. Any of the
selection arguments may be overwritten by a selection argument back reference as
specified by withSelectionBackReference(int, int)
.
This can only be used with builders of type update, delete, or assert.
Add a back references as a selection arg. Any value at that index of the selection arg
that was specified by withSelection(String, String[])
will be overwritten.
This can only be used with builders of type update, delete, or assert.
A value to insert or update. This value may be overwritten by
the corresponding value specified by withValueBackReference(String, int)
.
This can only be used with builders of type insert, update, or assert.
key | the name of this value |
---|---|
value | the value itself. the type must be acceptable for insertion by
put(String, byte[]) |
Add a ContentValues back reference.
A column value from the back references takes precedence over a value specified in
withValues(ContentValues)
.
This can only be used with builders of type insert, update, or assert.
Add a ContentValues
of back references. The key is the name of the column
and the value is an integer that is the index of the previous result whose
value should be used for the column. The value is added as a String
.
A column value from the back references takes precedence over a value specified in
withValues(ContentValues)
.
This can only be used with builders of type insert, update, or assert.
The ContentValues to use. This may be null. These values may be overwritten by
the corresponding value specified by withValueBackReference(String, int)
or by
future calls to withValues(ContentValues)
or withValue(String, Object)
.
This can only be used with builders of type insert, update, or assert.