Creates a program that executes a rule set.
(RuleSet ruleSet)
| 121 | |
| 122 | /** Creates a program that executes a rule set. */ |
| 123 | public static Program of(RuleSet ruleSet) { |
| 124 | return new RuleSetProgram(ruleSet); |
| 125 | } |
| 126 | |
| 127 | /** Creates a list of programs based on an array of rule sets. */ |
| 128 | public static List<Program> listOf(RuleSet... ruleSets) { |