use of org.elasticsearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsCrawlingInfoParamCQ method setKey_LessEqual.
public void setKey_LessEqual(String key, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = key;
RangeQueryBuilder builder = regRangeQ("key", 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 BsCrawlingInfoParamCQ method setValue_GreaterThan.
public void setValue_GreaterThan(String value, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = value;
RangeQueryBuilder builder = regRangeQ("value", 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 BsCrawlingInfoParamCQ method setCrawlingInfoId_LessEqual.
public void setCrawlingInfoId_LessEqual(String crawlingInfoId, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = crawlingInfoId;
RangeQueryBuilder builder = regRangeQ("crawlingInfoId", 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 BsDataConfigCQ method setDescription_LessThan.
public void setDescription_LessThan(String description, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = description;
RangeQueryBuilder builder = regRangeQ("description", ConditionKey.CK_LESS_THAN, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
use of org.elasticsearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsDataConfigCQ method setAvailable_LessEqual.
public void setAvailable_LessEqual(Boolean available, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = available;
RangeQueryBuilder builder = regRangeQ("available", ConditionKey.CK_LESS_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
Aggregations