use of org.opensearch.index.query.RangeQueryBuilder in project fess by codelibs.
the class BsThumbnailQueueCQ method setCreatedTime_LessEqual.
public void setCreatedTime_LessEqual(Long createdTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = createdTime;
RangeQueryBuilder builder = regRangeQ("createdTime", 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 BsThumbnailQueueCQ method setThumbnailId_GreaterEqual.
public void setThumbnailId_GreaterEqual(String thumbnailId, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = thumbnailId;
RangeQueryBuilder builder = regRangeQ("thumbnail_id", 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 setThumbnailId_LessThan.
public void setThumbnailId_LessThan(String thumbnailId, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = thumbnailId;
RangeQueryBuilder builder = regRangeQ("thumbnail_id", 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 BsThumbnailQueueCQ method setPath_LessThan.
public void setPath_LessThan(String path, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = path;
RangeQueryBuilder builder = regRangeQ("path", 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 BsThumbnailQueueCQ method setTarget_GreaterEqual.
public void setTarget_GreaterEqual(String target, ConditionOptionCall<RangeQueryBuilder> opLambda) {
final Object _value = target;
RangeQueryBuilder builder = regRangeQ("target", ConditionKey.CK_GREATER_EQUAL, _value);
if (opLambda != null) {
opLambda.callback(builder);
}
}
Aggregations