Added in API level 28

TextLink


class TextLink : Parcelable
kotlin.Any
   ↳ android.view.textclassifier.TextLinks.TextLink

A link, identifying a substring of text and possible entity types for it.

Summary

Inherited constants
Public methods
Int

Float
getConfidenceScore(entityType: String!)

Returns the confidence score for a particular entity type.

Int

Returns the end index of this link in the original text.

String
getEntity(index: Int)

Returns the entity type at a given index.

Int

Returns the number of entity types that have confidence scores.

Bundle

Returns a bundle containing custom data related to this TextLink.

Int

Returns the start index of this link in the original text.

String

Unit
writeToParcel(dest: Parcel, flags: Int)

Properties
static Parcelable.Creator<TextLinks.TextLink!>

Public methods

describeContents

Added in API level 28
fun describeContents(): Int
Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR

getEnd

Added in API level 28
fun getEnd(): Int

Returns the end index of this link in the original text.

Return
Int the end index

getEntityCount

Added in API level 28
fun getEntityCount(): Int

Returns the number of entity types that have confidence scores.

Return
Int the entity count

getExtras

Added in API level 29
fun getExtras(): Bundle

Returns a bundle containing custom data related to this TextLink.

Return
Bundle This value cannot be null.

getStart

Added in API level 28
fun getStart(): Int

Returns the start index of this link in the original text.

Return
Int the start index

toString

Added in API level 28
fun toString(): String
Return
String a string representation of the object.

writeToParcel

Added in API level 28
fun writeToParcel(
    dest: Parcel,
    flags: Int
): Unit
Parameters
dest Parcel: The Parcel in which the object should be written. 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

Added in API level 28
static val CREATOR: Parcelable.Creator<TextLinks.TextLink!>