RemoveByDocumentIdRequest
class RemoveByDocumentIdRequest : Parcelable
kotlin.Any | |
↳ | android.app.appsearch.RemoveByDocumentIdRequest |
Encapsulates a request to remove documents by namespace and IDs from the AppSearchSession
database.
Summary
Nested classes | |
---|---|
Builder for |
Inherited constants | |
---|---|
Public methods | |
---|---|
MutableSet<String!> |
getIds() Returns the set of document IDs attached to the request. |
String |
Returns the namespace to remove documents from. |
Unit |
writeToParcel(dest: Parcel, flags: Int) Flatten this object in to a Parcel. |
Properties | |
---|---|
static Parcelable.Creator<RemoveByDocumentIdRequest!> |
Creator class for |
Public methods
getIds
fun getIds(): MutableSet<String!>
Returns the set of document IDs attached to the request.
Return | |
---|---|
MutableSet<String!> |
This value cannot be null . |
getNamespace
fun getNamespace(): String
Returns the namespace to remove documents from.
Return | |
---|---|
String |
This value cannot be null . |
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel: This value cannot be null . |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |
Properties
CREATOR
static val CREATOR: Parcelable.Creator<RemoveByDocumentIdRequest!>
Creator class for android.app.appsearch.RemoveByDocumentIdRequest
.