use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsScheduledJobCQ method setName_GreaterEqual.
public void setName_GreaterEqual(String name, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = name;
RangeQueryBuilder builder = regRangeQ("name", ConditionKey.CK_GREATER_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsScheduledJobCQ method setUpdatedTime_LessThan.
public void setUpdatedTime_LessThan(Long updatedTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = updatedTime;
RangeQueryBuilder builder = regRangeQ("updatedTime", ConditionKey.CK_LESS_THAN, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsRelatedContentCQ 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);
}
}
use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsRelatedContentCQ method setCreatedTime_GreaterThan.
public void setCreatedTime_GreaterThan(Long createdTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = createdTime;
RangeQueryBuilder builder = regRangeQ("createdTime", ConditionKey.CK_GREATER_THAN, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsRelatedContentCQ method setSortOrder_GreaterThan.
public void setSortOrder_GreaterThan(Integer sortOrder, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = sortOrder;
RangeQueryBuilder builder = regRangeQ("sortOrder", ConditionKey.CK_GREATER_THAN, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
Aggregations