Cells

Functions

Link copied to clipboard
abstract fun all(): List<Cell>

Returns all matching items.

Link copied to clipboard

Returns all matching items, including any that all hides. Defaults to all for finders that do not hide anything.

Link copied to clipboard
abstract override fun barcode(key: String?): BarcodeCell?

Finds a barcode item by its identifier.

Link copied to clipboard
abstract fun block(key: String?): Cell?

Finds a block (rich text) item by its identifier.

Link copied to clipboard
abstract override fun date(key: String?): DateCell?

Finds a date item by its identifier.

Link copied to clipboard
abstract fun displaying(): List<Cell>
Link copied to clipboard
abstract override fun dropdown(key: String?): DropdownCell?

Finds a dropdown (single-select) item by its identifier.

Link copied to clipboard
abstract override fun file(key: String?): FileCell?

Finds a file item by its identifier.

Link copied to clipboard
abstract override fun find(key: String?): Cell?

Finds a Cell by key

Link copied to clipboard
abstract override fun image(key: String?): ImageCell?

Finds an image item by its identifier.

Link copied to clipboard
abstract override fun multiSelect(key: String?): MultiSelectCell?

Finds a multi-select item by its identifier.

Link copied to clipboard
abstract override fun number(key: String?): NumberCell?

Finds a numeric item by its identifier.

Link copied to clipboard
abstract override fun signature(key: String?): SignatureCell?

Finds a signature item by its identifier.

Link copied to clipboard
abstract override fun text(key: String?): TextCell?

Finds a TextCell by key

Link copied to clipboard
abstract override fun textArea(key: String?): TextAreaCell?

Finds a multi-line text area item by its identifier.

Link copied to clipboard
abstract fun toJsonObject(): JsonObject

Serializes this instance to a structured JsonObject.

Link copied to clipboard
abstract fun toJsonString(): String

Serializes this instance to a compact JSON string.

Link copied to clipboard
abstract fun toMap(): MutableMap<String, Any?>

Converts this instance into a mutable key-value map suitable for mutation and re-serialization.