PropertyArray

open class PropertyArray

A fixed-length mutable array of item type {@link com.sap.cloud.mobile.kotlin.odata.Property}.

Constructors

Link copied to clipboard
constructor(length: Int, initial: Property)

Construct a new list with specified {@link com.sap.cloud.mobile.kotlin.odata.PropertyArray#length PropertyArray.length}.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val length: Int

Functions

Link copied to clipboard
operator fun get(index: Int): Property

Return the item in this list at the specified index.

Throws:

Fatal exception if index is out of range (0 to {@link com.sap.cloud.mobile.kotlin.odata.PropertyArray#length PropertyArray.length} - 1).

Link copied to clipboard
operator fun set(index: Int, value: Property)

Set the item in this list at the specified index.

Throws:

Fatal exception if index is out of range (0 to {@link com.sap.cloud.mobile.kotlin.odata.PropertyArray#length PropertyArray.length} - 1).