org.dmg.pmml.rule_set.PMMLElements Maven / Gradle / Ivy
package org.dmg.pmml.rule_set;
import java.lang.reflect.Field;
public interface PMMLElements {
Field COMPOUNDRULE_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(CompoundRule.class, "extensions");
Field COMPOUNDRULE_PREDICATE = org.jpmml.model.ReflectionUtil.getField(CompoundRule.class, "predicate");
Field COMPOUNDRULE_RULES = org.jpmml.model.ReflectionUtil.getField(CompoundRule.class, "rules");
Field RULESELECTIONMETHOD_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(RuleSelectionMethod.class, "extensions");
Field RULESET_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(RuleSet.class, "extensions");
Field RULESET_RULESELECTIONMETHODS = org.jpmml.model.ReflectionUtil.getField(RuleSet.class, "ruleSelectionMethods");
Field RULESET_SCOREDISTRIBUTIONS = org.jpmml.model.ReflectionUtil.getField(RuleSet.class, "scoreDistributions");
Field RULESET_RULES = org.jpmml.model.ReflectionUtil.getField(RuleSet.class, "rules");
Field RULESETMODEL_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "extensions");
Field RULESETMODEL_MININGSCHEMA = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "miningSchema");
Field RULESETMODEL_OUTPUT = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "output");
Field RULESETMODEL_MODELSTATS = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "modelStats");
Field RULESETMODEL_MODELEXPLANATION = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "modelExplanation");
Field RULESETMODEL_TARGETS = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "targets");
Field RULESETMODEL_LOCALTRANSFORMATIONS = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "localTransformations");
Field RULESETMODEL_RULESET = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "ruleSet");
Field RULESETMODEL_MODELVERIFICATION = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "modelVerification");
Field SIMPLERULE_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "extensions");
Field SIMPLERULE_PREDICATE = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "predicate");
Field SIMPLERULE_SCOREDISTRIBUTIONS = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "scoreDistributions");
}