addParam

fun addParam(key: String, value: String)

Adds a String parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: ByteArray)

Adds a ByteArray parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: Float)

Adds a Float parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: Long)

Adds a Long parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: Double)

Adds a Double parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: Boolean)

Adds a Boolean parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, dataItem: DataItem): Boolean

Adds a DataItem parameter to the ZK system specification. Will add the parameter to the primitive value of the DataItem.

Parameters

key

the key of the parameter.

value

the value of the parameter.