StatusScope.valueOf(inProcess,completed,aborted)

Creates a StatusScope with the combination of boolean values recieved as parameters. For example: //ALL ss = StatusScope.valueOf(inProcess : true, completed : true, aborted : true) //ONLY_INPROCESS ss = StatusScope.valueOf(inProcess : true, completed : false, aborted : false) //ONLY_ABORTED ss = StatusScope.valueOf(inProcess : false, completed : false, aborted : true) //ONLY_COMPLETED ss = StatusScope.valueOf(inProcess : false, completed : true, aborted : false) //INPROCESS_AND_COMPLETED ss = StatusScope.valueOf(inProcess : true, completed : true, aborted : false) //INPROCESS_AND_ABORTED ss = StatusScope.valueOf(inProcess : true, completed : false, aborted : true) //ABORTED_AND_COMPLETED ss = StatusScope.valueOf(inProcess : false, completed : true, aborted : true) Combination false, false, false is not a valid one.

Arguments:

Name Type Description Mode
inProcess Bool in
completed Bool in
aborted Bool in