當前位置: 首頁>>代碼示例>>Java>>正文


Java BooleanLiteral類代碼示例

本文整理匯總了Java中org.odata4j.expression.BooleanLiteral的典型用法代碼示例。如果您正苦於以下問題:Java BooleanLiteral類的具體用法?Java BooleanLiteral怎麽用?Java BooleanLiteral使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


BooleanLiteral類屬於org.odata4j.expression包,在下文中一共展示了BooleanLiteral類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getSearchValue

import org.odata4j.expression.BooleanLiteral; //導入依賴的package包/類
/**
 * elasticsearchの検索文字列を返卻する.
 * @param expr CommonExpression
 * @return elasticsearchの検索文字列
 */
private Object getSearchValue(CommonExpression expr) {
    if (expr instanceof IntegralLiteral) {
        return ((IntegralLiteral) expr).getValue();
    } else if (expr instanceof Int64Literal) {
        return ((Int64Literal) expr).getValue();
    } else if (expr instanceof DoubleLiteral) {
        return ((DoubleLiteral) expr).getValue();
    } else if (expr instanceof BooleanLiteral) {
        return ((BooleanLiteral) expr).getValue();
    } else if (expr instanceof DateTimeLiteral) {
        return ((DateTimeLiteral) expr).getValue().toDateTime(DateTimeZone.UTC).getMillis();
    } else if (expr instanceof DateTimeOffsetLiteral) {
        return ((DateTimeOffsetLiteral) expr).getValue().getMillis();
    } else {
        String value;
        try {
            value = StringEscapeUtils.unescapeJavaScript(((StringLiteral) expr).getValue());
        } catch (Exception e) {
            log.info("Failed to unescape searchValue.", e);
            throw PersoniumCoreException.OData.OPERATOR_AND_OPERAND_UNABLE_TO_UNESCAPE.params(((StringLiteral) expr)
                    .getValue());
        }
        return value;
    }
}
 
開發者ID:personium,項目名稱:personium-core,代碼行數:31,代碼來源:EsQueryHandler.java

示例2: validateFilterOpCondition

import org.odata4j.expression.BooleanLiteral; //導入依賴的package包/類
/**
 * $filterクエリの検索條件に指定するプロパティのデータ型と検索條件の値として指定されたデータ型の整合性を検証する.
 * <ul>
 * <li>StringLiteral</li>
 * <li>IntegralLiteral、Int64Literal</li>
 * <li>DoubleLiteral</li>
 * </ul>
 * なお、"1.0f" や "1.0m" などの表記(それぞれSingleLiteral、DecimalLiteral)はパースエラーとする。
 * @param edmProperty $filterの検索條件に指定されたプロパティ
 * @param searchValue $filterの検索條件の値
 */
static void validateFilterOpCondition(EdmProperty edmProperty, CommonExpression searchValue) {
    // 比較演算子(lt/le/ge/gt)共通で許容するデータ: 文字列/整數値/実數値
    // 真偽値やNULLは大小比較ができないため、許容しない。
    if (searchValue instanceof BooleanLiteral
            || searchValue instanceof NullLiteral) {
        throw PersoniumCoreException.OData.FILTER_PARSE_ERROR;
    }

    // スキーマ定義されているプロパティのデータ型として検索條件の値が評価できることを検証する。
    // ただし、スキーマ定義されていない場合は、検証できないので除外する。
    if (edmProperty != null) {
        AbstractValidator validator = validatorMap.get(edmProperty.getType());
        if (null == validator) {
            throw PersoniumCoreException.OData.FILTER_PARSE_ERROR;
        }
        validator.validate(searchValue, edmProperty.getName());
    }
}
 
開發者ID:personium,項目名稱:personium-core,代碼行數:30,代碼來源:FilterConditionValidator.java

示例3: validate

import org.odata4j.expression.BooleanLiteral; //導入依賴的package包/類
@Override
public void validate(CommonExpression searchValue, String propertyName) {
    if (searchValue instanceof BooleanLiteral
            || searchValue instanceof NullLiteral) {
        return;
    }
    throw PersoniumCoreException.OData.OPERATOR_AND_OPERAND_TYPE_MISMATCHED.params(propertyName);
}
 
開發者ID:personium,項目名稱:personium-core,代碼行數:9,代碼來源:FilterConditionValidator.java

示例4: visit

import org.odata4j.expression.BooleanLiteral; //導入依賴的package包/類
@Override
public void visit(BooleanLiteral expr) {
}
 
開發者ID:personium,項目名稱:personium-core,代碼行數:4,代碼來源:EsQueryHandler.java

示例5: visit

import org.odata4j.expression.BooleanLiteral; //導入依賴的package包/類
@Override
public void visit(BooleanLiteral expr) {
    // TODO: Customise this generated block
}
 
開發者ID:tsykora,項目名稱:infinispan-odata-server,代碼行數:5,代碼來源:MapQueryExpressionVisitor.java


注:本文中的org.odata4j.expression.BooleanLiteral類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。