use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsScheduledJobCQ method setTarget_GreaterThan.
public void setTarget_GreaterThan(String target, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = target;
RangeQueryBuilder builder = regRangeQ("target", 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 BsWebAuthenticationCQ method setAuthRealm_GreaterEqual.
public void setAuthRealm_GreaterEqual(String authRealm, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = authRealm;
RangeQueryBuilder builder = regRangeQ("authRealm", 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 BsLabelTypeCQ method setValue_LessThan.
public void setValue_LessThan(String value, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = value;
RangeQueryBuilder builder = regRangeQ("value", 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 BsLabelTypeCQ method setValue_GreaterEqual.
public void setValue_GreaterEqual(String value, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = value;
RangeQueryBuilder builder = regRangeQ("value", 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 BsLabelTypeCQ 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