ListItem


class ListItem : Parcelable
kotlin.Any
   ↳ android.graphics.pdf.models.ListItem

Represents a single option in a combo box or list box PDF form widget.

Summary

Inherited constants
Public constructors
ListItem(label: String, selected: Boolean)

Creates a new choice option with the specified label, and selected state.

Public methods
Int

Boolean
equals(other: Any?)

String

Int

Boolean

String

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<ListItem!>

Public constructors

ListItem

ListItem(
    label: String,
    selected: Boolean)

Creates a new choice option with the specified label, and selected state.

Parameters
label String: Label for choice option. This value cannot be null.
selected Boolean: Determines if the option is selected or not.
Exceptions
java.lang.NullPointerException if label is null

Public methods

describeContents

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

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.

getLabel

fun getLabel(): String
Return
String the label for the choice option in the list This value cannot be null.

hashCode

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

isSelected

fun isSelected(): Boolean
Return
Boolean true if the choice option is selected in the list

toString

fun toString(): String
Return
String a string representation of the 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

CREATOR

static val CREATOR: Parcelable.Creator<ListItem!>