本文整理汇总了Java中org.dmg.pmml.SimpleSetPredicate.getBooleanOperator方法的典型用法代码示例。如果您正苦于以下问题:Java SimpleSetPredicate.getBooleanOperator方法的具体用法?Java SimpleSetPredicate.getBooleanOperator怎么用?Java SimpleSetPredicate.getBooleanOperator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.dmg.pmml.SimpleSetPredicate
的用法示例。
在下文中一共展示了SimpleSetPredicate.getBooleanOperator方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: evaluateSimpleSetPredicate
import org.dmg.pmml.SimpleSetPredicate; //导入方法依赖的package包/类
static
public Boolean evaluateSimpleSetPredicate(SimpleSetPredicate simpleSetPredicate, EvaluationContext context){
FieldName name = simpleSetPredicate.getField();
if(name == null){
throw new MissingAttributeException(simpleSetPredicate, PMMLAttributes.SIMPLESETPREDICATE_FIELD);
}
SimpleSetPredicate.BooleanOperator booleanOperator = simpleSetPredicate.getBooleanOperator();
if(booleanOperator == null){
throw new MissingAttributeException(simpleSetPredicate, PMMLAttributes.SIMPLESETPREDICATE_BOOLEANOPERATOR);
}
FieldValue value = context.evaluate(name);
if(value == null){
return null;
}
switch(booleanOperator){
case IS_IN:
return value.isIn(simpleSetPredicate);
case IS_NOT_IN:
return !value.isIn(simpleSetPredicate);
default:
throw new UnsupportedAttributeException(simpleSetPredicate, booleanOperator);
}
}
示例2: transform
import org.dmg.pmml.SimpleSetPredicate; //导入方法依赖的package包/类
private Predicate transform(SimpleSetPredicate simpleSetPredicate){
Array array = simpleSetPredicate.getArray();
List<String> content = ArrayUtil.getContent(array);
if(content.size() != 1){
return simpleSetPredicate;
}
String value = content.get(0);
SimpleSetPredicate.BooleanOperator booleanOperator = simpleSetPredicate.getBooleanOperator();
switch(booleanOperator){
case IS_IN:
return createSimplePredicate(simpleSetPredicate.getField(), SimplePredicate.Operator.EQUAL, value);
case IS_NOT_IN:
return createSimplePredicate(simpleSetPredicate.getField(), SimplePredicate.Operator.NOT_EQUAL, value);
default:
break;
}
return simpleSetPredicate;
}
示例3: createKey
import org.dmg.pmml.SimpleSetPredicate; //导入方法依赖的package包/类
@Override
public ElementKey createKey(SimpleSetPredicate simpleSetPredicate){
Array array = simpleSetPredicate.getArray();
Object[] content = {simpleSetPredicate.getField(), simpleSetPredicate.getBooleanOperator(), ArrayUtil.getContent(array)};
return new ElementKey(content);
}