IntegerValue

data class IntegerValue(val value: Int) : StepInput

The value of the integer.

Constructors

Link copied to clipboard
constructor(value: Int)

Properties

Link copied to clipboard
val value: Int

Inherited functions

Link copied to clipboard

Casts this StepInput as a IntegerValue and retrieves its kotlin.Int value. Throws an exception if the StepInput is not a IntegerValue.

Link copied to clipboard

Casts this StepInput as a IntegerValue and retrieves its kotlin.Int value. Returns null if the StepInput is not a IntegerValue.

Link copied to clipboard

Casts this StepInput as a ListOfStringsValue and retrieves its kotlin.collections.List value. Throws an exception if the StepInput is not a ListOfStringsValue.

Link copied to clipboard

Casts this StepInput as a ListOfStringsValue and retrieves its kotlin.collections.List value. Returns null if the StepInput is not a ListOfStringsValue.

Link copied to clipboard

Casts this StepInput as a MapOfStringValue and retrieves its kotlin.collections.Map value. Throws an exception if the StepInput is not a MapOfStringValue.

Link copied to clipboard

Casts this StepInput as a MapOfStringValue and retrieves its kotlin.collections.Map value. Returns null if the StepInput is not a MapOfStringValue.

Link copied to clipboard

Casts this StepInput as a StringValue and retrieves its kotlin.String value. Throws an exception if the StepInput is not a StringValue.

Link copied to clipboard

Casts this StepInput as a StringValue and retrieves its kotlin.String value. Returns null if the StepInput is not a StringValue.