use of org.elasticsearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsDataConfigToRoleCQ method setRoleTypeId_LessEqual.
public void setRoleTypeId_LessEqual(String roleTypeId, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = roleTypeId;
RangeQueryBuilder builder = regRangeQ("roleTypeId", ConditionKey.CK_LESS_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.elasticsearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsDataConfigToRoleCQ method setRoleTypeId_GreaterEqual.
public void setRoleTypeId_GreaterEqual(String roleTypeId, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = roleTypeId;
RangeQueryBuilder builder = regRangeQ("roleTypeId", ConditionKey.CK_GREATER_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.elasticsearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsCrawlingInfoParamCQ method setCrawlingInfoId_GreaterThan.
public void setCrawlingInfoId_GreaterThan(String crawlingInfoId, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = crawlingInfoId;
RangeQueryBuilder builder = regRangeQ("crawlingInfoId", ConditionKey.CK_GREATER_THAN, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.elasticsearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsDataConfigCQ 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);
}
}
use of org.elasticsearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsDataConfigCQ method setUpdatedTime_GreaterEqual.
public void setUpdatedTime_GreaterEqual(Long updatedTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = updatedTime;
RangeQueryBuilder builder = regRangeQ("updatedTime", ConditionKey.CK_GREATER_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
Aggregations