use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsScheduledJobCQ method setJobLogging_GreaterThan.
public void setJobLogging_GreaterThan(Boolean jobLogging, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = jobLogging;
RangeQueryBuilder builder = regRangeQ("jobLogging", 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 BsScheduledJobCQ method setCreatedBy_LessThan.
public void setCreatedBy_LessThan(String createdBy, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = createdBy;
RangeQueryBuilder builder = regRangeQ("createdBy", 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 BsScheduledJobCQ method setCreatedBy_GreaterEqual.
public void setCreatedBy_GreaterEqual(String createdBy, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = createdBy;
RangeQueryBuilder builder = regRangeQ("createdBy", 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 setCronExpression_LessEqual.
public void setCronExpression_LessEqual(String cronExpression, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = cronExpression;
RangeQueryBuilder builder = regRangeQ("cronExpression", 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 setScriptData_GreaterThan.
public void setScriptData_GreaterThan(String scriptData, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = scriptData;
RangeQueryBuilder builder = regRangeQ("scriptData", ConditionKey.CK_GREATER_THAN, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
Aggregations