Search in sources :

Example 31 with RangeQueryBuilder

use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.

the class BsRelatedQueryCQ method setCreatedTime_LessEqual.

public void setCreatedTime_LessEqual(Long createdTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
    final Object _value = createdTime;
    RangeQueryBuilder builder = regRangeQ("createdTime", ConditionKey.CK_LESS_EQUAL, _value);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
Also used : RangeQueryBuilder(org.opensearch.index.query.RangeQueryBuilder)

Example 32 with RangeQueryBuilder

use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.

the class BsRelatedQueryCQ method setUpdatedBy_LessThan.

public void setUpdatedBy_LessThan(String updatedBy, ConditionOptionCall<RangeQueryBuilder> opLambda) {
    final Object _value = updatedBy;
    RangeQueryBuilder builder = regRangeQ("updatedBy", ConditionKey.CK_LESS_THAN, _value);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
Also used : RangeQueryBuilder(org.opensearch.index.query.RangeQueryBuilder)

Example 33 with RangeQueryBuilder

use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.

the class BsScheduledJobCQ method setName_LessThan.

public void setName_LessThan(String name, ConditionOptionCall<RangeQueryBuilder> opLambda) {
    final Object _value = name;
    RangeQueryBuilder builder = regRangeQ("name", ConditionKey.CK_LESS_THAN, _value);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
Also used : RangeQueryBuilder(org.opensearch.index.query.RangeQueryBuilder)

Example 34 with RangeQueryBuilder

use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.

the class BsScheduledJobCQ method setSortOrder_LessThan.

public void setSortOrder_LessThan(Integer sortOrder, ConditionOptionCall<RangeQueryBuilder> opLambda) {
    final Object _value = sortOrder;
    RangeQueryBuilder builder = regRangeQ("sortOrder", ConditionKey.CK_LESS_THAN, _value);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
Also used : RangeQueryBuilder(org.opensearch.index.query.RangeQueryBuilder)

Example 35 with RangeQueryBuilder

use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.

the class BsScheduledJobCQ method setScriptType_LessThan.

public void setScriptType_LessThan(String scriptType, ConditionOptionCall<RangeQueryBuilder> opLambda) {
    final Object _value = scriptType;
    RangeQueryBuilder builder = regRangeQ("scriptType", ConditionKey.CK_LESS_THAN, _value);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
Also used : RangeQueryBuilder(org.opensearch.index.query.RangeQueryBuilder)

Aggregations

RangeQueryBuilder (org.opensearch.index.query.RangeQueryBuilder)1203 BoolQueryBuilder (org.opensearch.index.query.BoolQueryBuilder)3 CommonTermsQueryBuilder (org.opensearch.index.query.CommonTermsQueryBuilder)3 ExistsQueryBuilder (org.opensearch.index.query.ExistsQueryBuilder)3 IdsQueryBuilder (org.opensearch.index.query.IdsQueryBuilder)3 MatchAllQueryBuilder (org.opensearch.index.query.MatchAllQueryBuilder)3 MatchPhrasePrefixQueryBuilder (org.opensearch.index.query.MatchPhrasePrefixQueryBuilder)3 MatchPhraseQueryBuilder (org.opensearch.index.query.MatchPhraseQueryBuilder)3 MatchQueryBuilder (org.opensearch.index.query.MatchQueryBuilder)3 MoreLikeThisQueryBuilder (org.opensearch.index.query.MoreLikeThisQueryBuilder)3 PrefixQueryBuilder (org.opensearch.index.query.PrefixQueryBuilder)3 QueryBuilder (org.opensearch.index.query.QueryBuilder)3 QueryStringQueryBuilder (org.opensearch.index.query.QueryStringQueryBuilder)3 RegexpQueryBuilder (org.opensearch.index.query.RegexpQueryBuilder)3 SpanTermQueryBuilder (org.opensearch.index.query.SpanTermQueryBuilder)3 TermQueryBuilder (org.opensearch.index.query.TermQueryBuilder)3 TermsQueryBuilder (org.opensearch.index.query.TermsQueryBuilder)3 WildcardQueryBuilder (org.opensearch.index.query.WildcardQueryBuilder)3 FunctionScoreQueryBuilder (org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder)3