org.dmg.pmml.rule_set.PMMLAttributes Maven / Gradle / Ivy
package org.dmg.pmml.rule_set;
import java.lang.reflect.Field;
public interface PMMLAttributes {
Field RULESELECTIONMETHOD_CRITERION = org.jpmml.model.ReflectionUtil.getField(RuleSelectionMethod.class, "criterion");
Field RULESET_RECORDCOUNT = org.jpmml.model.ReflectionUtil.getField(RuleSet.class, "recordCount");
Field RULESET_NBCORRECT = org.jpmml.model.ReflectionUtil.getField(RuleSet.class, "nbCorrect");
Field RULESET_DEFAULTSCORE = org.jpmml.model.ReflectionUtil.getField(RuleSet.class, "defaultScore");
Field RULESET_DEFAULTCONFIDENCE = org.jpmml.model.ReflectionUtil.getField(RuleSet.class, "defaultConfidence");
Field RULESETMODEL_MODELNAME = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "modelName");
Field RULESETMODEL_MININGFUNCTION = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "miningFunction");
Field RULESETMODEL_ALGORITHMNAME = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "algorithmName");
Field RULESETMODEL_SCORABLE = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "scorable");
Field RULESETMODEL_MATHCONTEXT = org.jpmml.model.ReflectionUtil.getField(RuleSetModel.class, "mathContext");
Field SIMPLERULE_ID = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "id");
Field SIMPLERULE_SCORE = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "score");
Field SIMPLERULE_RECORDCOUNT = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "recordCount");
Field SIMPLERULE_NBCORRECT = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "nbCorrect");
Field SIMPLERULE_CONFIDENCE = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "confidence");
Field SIMPLERULE_WEIGHT = org.jpmml.model.ReflectionUtil.getField(SimpleRule.class, "weight");
}