Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration for various states of the input data for variables in the cycle. Individual members corresponds to binary bits and can be set simultaneously, like:

const input : VariableInputState = VariableInputState.HasPreviousValue | VariableInputState.HasProposedValue

Index

Enumeration members

HasPreviousValue

HasPreviousValue: = 1

This bit indicates that variable has some previous value, when resolution starts. It can be any non-undefined value, including null.

HasProposedValue

HasProposedValue: = 2

This bit indicates that variable has user input, when resolution starts. It can be any non-undefined value, including null.

KeepIfPossible

KeepIfPossible: = 4

This bit indicates, that user intention is to keep this variable unchanged, if that is possible (does not contradict to other user input).

NoInput

NoInput: = 0

Generated using TypeDoc