android.content
public
interface
android.content.IContentProvider
The ipc interface to talk to a content provider.
Summary
Constants
Public Methods
|
|
|
|
|
int |
bulkInsert(Uri url, ContentValues[] initialValues) |
|
|
|
|
|
int |
delete(Uri url, String selection, String[] selectionArgs) |
|
|
|
|
|
ISyncAdapter |
getSyncAdapter() |
|
|
|
|
|
String |
getType(Uri url) |
|
|
|
|
|
Uri |
insert(Uri url, ContentValues initialValues) |
|
|
|
|
|
ParcelFileDescriptor |
openFile(Uri url, String mode) |
|
|
|
|
|
Cursor |
query(Uri url, String[] projection, String selection, String[] selectionArgs, String sortOrder) |
|
|
|
|
|
int |
update(Uri url, ContentValues values, String selection, String[] selectionArgs) |
Details
Constants
public
static
final
int
BULK_INSERT_TRANSACTION
Constant Value:
13
(0x0000000d)
public
static
final
int
DELETE_TRANSACTION
Constant Value:
4
(0x00000004)
public
static
final
int
GET_SYNC_ADAPTER_TRANSACTION
Constant Value:
11
(0x0000000b)
public
static
final
int
GET_TYPE_TRANSACTION
Constant Value:
2
(0x00000002)
public
static
final
int
INSERT_TRANSACTION
Constant Value:
3
(0x00000003)
public
static
final
int
OPEN_FILE_TRANSACTION
Constant Value:
14
(0x0000000e)
public
static
final
int
QUERY_TRANSACTION
Constant Value:
1
(0x00000001)
public
static
final
int
UPDATE_TRANSACTION
Constant Value:
10
(0x0000000a)
public
static
final
String
descriptor
Constant Value:
"android.content.IContentProvider"
Public Methods