use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsRoleTypeCQ method setUpdatedTime_GreaterThan.
public void setUpdatedTime_GreaterThan(Long updatedTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = updatedTime;
RangeQueryBuilder builder = regRangeQ("updatedTime", 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 BsRoleTypeCQ method setSortOrder_LessEqual.
public void setSortOrder_LessEqual(Integer sortOrder, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = sortOrder;
RangeQueryBuilder builder = regRangeQ("sortOrder", ConditionKey.CK_LESS_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsRoleTypeCQ method setSortOrder_GreaterEqual.
public void setSortOrder_GreaterEqual(Integer sortOrder, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = sortOrder;
RangeQueryBuilder builder = regRangeQ("sortOrder", 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 BsThumbnailQueueCQ method setCreatedBy_LessEqual.
public void setCreatedBy_LessEqual(String createdBy, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = createdBy;
RangeQueryBuilder builder = regRangeQ("createdBy", ConditionKey.CK_LESS_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsScheduledJobCQ method setJobLogging_GreaterEqual.
public void setJobLogging_GreaterEqual(Boolean jobLogging, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = jobLogging;
RangeQueryBuilder builder = regRangeQ("jobLogging", ConditionKey.CK_GREATER_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
Aggregations