本文整理汇总了Java中org.odata4j.expression.EqExpression类的典型用法代码示例。如果您正苦于以下问题:Java EqExpression类的具体用法?Java EqExpression怎么用?Java EqExpression使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
EqExpression类属于org.odata4j.expression包,在下文中一共展示了EqExpression类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import org.odata4j.expression.EqExpression; //导入依赖的package包/类
/**
* 完全一致検索時のvisit.
* @param expr EqExpression
*/
@Override
public void visit(EqExpression expr) {
log.debug("visit(EqExpression expr)");
// $filterに指定された検索条件のプロパティが単純型ではない場合は、パースエラーとする。
if (!(expr.getLHS() instanceof EntitySimpleProperty)) {
throw PersoniumCoreException.OData.FILTER_PARSE_ERROR;
}
EdmProperty edmProperty = getEdmProprety((EntitySimpleProperty) expr.getLHS());
// $filterに指定されたプロパティの型と検索条件の値として指定されたデータ型の検証
CommonExpression searchValue = expr.getRHS();
FilterConditionValidator.validateFilterEqCondition(edmProperty, searchValue);
// 検索クエリを設定する
// 検索対象がnullの場合、{"missing":{"field":"xxx"}}を作成する
if (expr.getRHS() instanceof NullLiteral) {
Map<String, Object> missing = new HashMap<String, Object>();
missing.put("field", getSearchKey(expr.getLHS(), true));
this.current.put("missing", missing);
this.current = stack.pop();
} else {
// 検索対象がnull以外の場合、termクエリを作成する
Map<String, Object> term = new HashMap<String, Object>();
term.put(getSearchKey(expr.getLHS(), true), getSearchValue(expr.getRHS()));
this.current.put("term", term);
this.current = stack.pop();
}
}
示例2: testLengthExpression
import org.odata4j.expression.EqExpression; //导入依赖的package包/类
@Test
public void testLengthExpression() {
EqExpression ex = Expression.eq(Expression.length(Expression.string("aaa")), Expression.int64(3));
boolean evaluate = InMemoryEvaluation.evaluate(ex, this, new BeanBasedPropertyModel(getClass()));
Assert.assertTrue(evaluate);
}
示例3: visit
import org.odata4j.expression.EqExpression; //导入依赖的package包/类
/**
* This method acts as a resolver for calling responsible visitor method.
*
* @param expr - general expression
*/
public void visit(BoolCommonExpression expr) {
if(expr.getClass().getInterfaces()[0] == AndExpression.class) {
visit((AndExpression) expr);
}
if(expr.getClass().getInterfaces()[0] == OrExpression.class) {
visit((OrExpression) expr);
}
if(expr.getClass().getInterfaces()[0] == EqExpression.class) {
visit((EqExpression) expr);
}
log.trace("End of the main BoolCommonExpression -- actual value of tmpQuery: " + tmpQuery);
}