SchemaVisibilityConfig


class SchemaVisibilityConfig : Parcelable
kotlin.Any
   ↳ android.app.appsearch.SchemaVisibilityConfig

A class to hold a all necessary Visibility information corresponding to the same schema. This pattern allows for easier association of these documents.

This does not correspond to any schema, the properties held in this class are kept in two separate schemas, VisibilityConfig and PublicAclOverlay.

Summary

Nested classes

The builder class of SchemaVisibilityConfig.

Inherited constants
Public methods
Boolean
equals(other: Any?)

MutableList<PackageIdentifier!>

Returns a list of PackageIdentifiers of packages that can access this schema.

PackageIdentifier?

Returns the PackageIdentifier of the package that will be used as the target package in a call to android.

MutableSet<MutableSet<Int!>!>

Returns an array of Integers representing Android Permissions as defined in android.

Int

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<SchemaVisibilityConfig!>

Public methods

equals

fun equals(other: Any?): Boolean
Parameters
obj the reference object with which to compare.
Return
Boolean true if this object is the same as the obj argument; false otherwise.

getAllowedPackages

fun getAllowedPackages(): MutableList<PackageIdentifier!>

Returns a list of PackageIdentifiers of packages that can access this schema.

Return
MutableList<PackageIdentifier!> This value cannot be null.

getPubliclyVisibleTargetPackage

fun getPubliclyVisibleTargetPackage(): PackageIdentifier?

Returns the PackageIdentifier of the package that will be used as the target package in a call to android.content.pm.PackageManager#canPackageQuery to determine which packages can access this publicly visible schema. Returns null if the schema is not publicly visible.

getRequiredPermissions

fun getRequiredPermissions(): MutableSet<MutableSet<Int!>!>

Returns an array of Integers representing Android Permissions as defined in android.app.appsearch.SetSchemaRequest.AppSearchSupportedPermission that the caller must hold to access the schema this SchemaVisibilityConfig represents.

Return
MutableSet<MutableSet<Int!>!> This value cannot be null.

hashCode

fun hashCode(): Int
Return
Int a hash code value for this object.

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