CellDecorators

Functions

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

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 fun barcode(key: String?): List<Decorator>?

Finds a barcode item by its identifier.

Link copied to clipboard
abstract fun block(key: String?): List<Decorator>?

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

Link copied to clipboard
abstract fun date(key: String?): List<Decorator>?

Finds a date item by its identifier.

Link copied to clipboard
abstract fun dropdown(key: String?): List<Decorator>?

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

Link copied to clipboard
abstract fun file(key: String?): List<Decorator>?

Finds a file item by its identifier.

Link copied to clipboard
abstract fun find(key: String?): List<Decorator>?

Finds an item by its identifier.

Link copied to clipboard
abstract fun image(key: String?): List<Decorator>?

Finds an image item by its identifier.

Link copied to clipboard
abstract fun multiSelect(key: String?): List<Decorator>?

Finds a multi-select item by its identifier.

Link copied to clipboard
abstract fun number(key: String?): List<Decorator>?

Finds a numeric item by its identifier.

Link copied to clipboard
abstract fun signature(key: String?): List<Decorator>?

Finds a signature item by its identifier.

Link copied to clipboard
abstract fun text(key: String?): List<Decorator>?

Finds a text item by its identifier.

Link copied to clipboard
abstract fun textArea(key: String?): List<Decorator>?

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.