Routing Type
|
Expression
|
Votes
|
Outcome
|
---|---|---|---|
Manual
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Specify the result. result = WfTally.any(self, "Yellow", "Blue"); |
Yellow 2
Blue 10
|
Yellow
|
Routing Type
|
Expression
|
Votes
|
Outcome
|
---|---|---|---|
Manual
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Specify the result. result = WfTally.all(self, "Yellow", "Blue"); |
Yellow 9
Blue 3
|
Blue
|
Routing Type
|
Expression
|
Votes
|
Outcome
|
---|---|---|---|
Manual exclusive
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Specify the result. result = WfTally.percent(self, WfTally.GT, 30, "Yellow", "Blue"); |
Yellow 4
Blue 8
|
Yellow
|
Routing Type
|
Expression
|
Votes
|
Outcome
|
---|---|---|---|
Manual
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Specify the result. result = WfTally.number(self, WfTally.GTE, 3, "Yellow", "Blue"); |
Yellow 3
Blue 8
|
Yellow
|
Routing Type
|
Expression
|
Votes
|
Outcome
|
---|---|---|---|
Manual exclusive
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Specify the result. result = WfTally.plurality(self, "Yellow", "Blue"); |
Yellow 5
Blue 5
|
Yellow
|
Routing Type
|
Expression
|
Votes
|
Outcome
|
---|---|---|---|
Manual exclusive
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Specify the result. result = WfTally.notPlurality(self , "Yellow", "Blue"); |
Yellow 6
Blue 4
|
Blue
|