|
@@ -0,0 +1,1167 @@
|
|
|
+/*
|
|
|
+ * Copyright 2012-2016 CodeLibs Project and the Others.
|
|
|
+ *
|
|
|
+ * Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
+ * you may not use this file except in compliance with the License.
|
|
|
+ * You may obtain a copy of the License at
|
|
|
+ *
|
|
|
+ * http://www.apache.org/licenses/LICENSE-2.0
|
|
|
+ *
|
|
|
+ * Unless required by applicable law or agreed to in writing, software
|
|
|
+ * distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
|
+ * either express or implied. See the License for the specific language
|
|
|
+ * governing permissions and limitations under the License.
|
|
|
+ */
|
|
|
+package org.codelibs.fess.es.config.cbean.cq.bs;
|
|
|
+
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.util.Collection;
|
|
|
+
|
|
|
+import org.codelibs.fess.es.config.allcommon.EsAbstractConditionQuery;
|
|
|
+import org.codelibs.fess.es.config.cbean.cq.ThumbnailQueueCQ;
|
|
|
+import org.dbflute.cbean.ckey.ConditionKey;
|
|
|
+import org.elasticsearch.index.query.BoolQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.CommonTermsQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.ExistsQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.FuzzyQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.IdsQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.MatchQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.PrefixQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.RangeQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.RegexpQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.TermQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.TermsQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.WildcardQueryBuilder;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author ESFlute (using FreeGen)
|
|
|
+ */
|
|
|
+public abstract class BsThumbnailQueueCQ extends EsAbstractConditionQuery {
|
|
|
+
|
|
|
+ protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
|
|
|
+
|
|
|
+ // ===================================================================================
|
|
|
+ // Name Override
|
|
|
+ // =============
|
|
|
+ @Override
|
|
|
+ public String asTableDbName() {
|
|
|
+ return "thumbnail_queue";
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String xgetAliasName() {
|
|
|
+ return "thumbnail_queue";
|
|
|
+ }
|
|
|
+
|
|
|
+ // ===================================================================================
|
|
|
+ // Query Control
|
|
|
+ // =============
|
|
|
+ public void filtered(FilteredCall<ThumbnailQueueCQ, ThumbnailQueueCQ> filteredLambda) {
|
|
|
+ filtered(filteredLambda, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void filtered(FilteredCall<ThumbnailQueueCQ, ThumbnailQueueCQ> filteredLambda, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ bool((must, should, mustNot, filter) -> {
|
|
|
+ filteredLambda.callback(must, filter);
|
|
|
+ }, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void not(OperatorCall<ThumbnailQueueCQ> notLambda) {
|
|
|
+ not(notLambda, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void not(final OperatorCall<ThumbnailQueueCQ> notLambda, final ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ bool((must, should, mustNot, filter) -> notLambda.callback(mustNot), opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void bool(BoolCall<ThumbnailQueueCQ> boolLambda) {
|
|
|
+ bool(boolLambda, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void bool(BoolCall<ThumbnailQueueCQ> boolLambda, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ ThumbnailQueueCQ mustQuery = new ThumbnailQueueCQ();
|
|
|
+ ThumbnailQueueCQ shouldQuery = new ThumbnailQueueCQ();
|
|
|
+ ThumbnailQueueCQ mustNotQuery = new ThumbnailQueueCQ();
|
|
|
+ ThumbnailQueueCQ filterQuery = new ThumbnailQueueCQ();
|
|
|
+ boolLambda.callback(mustQuery, shouldQuery, mustNotQuery, filterQuery);
|
|
|
+ if (mustQuery.hasQueries() || shouldQuery.hasQueries() || mustNotQuery.hasQueries() || filterQuery.hasQueries()) {
|
|
|
+ BoolQueryBuilder builder =
|
|
|
+ regBoolCQ(mustQuery.getQueryBuilderList(), shouldQuery.getQueryBuilderList(), mustNotQuery.getQueryBuilderList(),
|
|
|
+ filterQuery.getQueryBuilderList());
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // ===================================================================================
|
|
|
+ // Query Set
|
|
|
+ // =========
|
|
|
+ public void setId_Equal(String id) {
|
|
|
+ setId_Term(id, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_Equal(String id, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ setId_Term(id, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_Term(String id) {
|
|
|
+ setId_Term(id, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_Term(String id, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ TermQueryBuilder builder = regTermQ("_id", id);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_NotEqual(String id) {
|
|
|
+ setId_NotTerm(id, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_NotTerm(String id) {
|
|
|
+ setId_NotTerm(id, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_NotEqual(String id, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ setId_NotTerm(id, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_NotTerm(String id, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ not(not -> not.setId_Term(id), opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_Terms(Collection<String> idList) {
|
|
|
+ setId_Terms(idList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
|
|
|
+ IdsQueryBuilder builder = regIdsQ(idList);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_InScope(Collection<String> idList) {
|
|
|
+ setId_Terms(idList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
|
|
|
+ setId_Terms(idList, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_Id_Asc() {
|
|
|
+ regOBA("_id");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_Id_Desc() {
|
|
|
+ regOBD("_id");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Equal(String createdBy) {
|
|
|
+ setCreatedBy_Term(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Equal(String createdBy, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ setCreatedBy_Term(createdBy, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Term(String createdBy) {
|
|
|
+ setCreatedBy_Term(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Term(String createdBy, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ TermQueryBuilder builder = regTermQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_NotEqual(String createdBy) {
|
|
|
+ setCreatedBy_NotTerm(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_NotTerm(String createdBy) {
|
|
|
+ setCreatedBy_NotTerm(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_NotEqual(String createdBy, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ setCreatedBy_NotTerm(createdBy, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_NotTerm(String createdBy, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ not(not -> not.setCreatedBy_Term(createdBy), opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Terms(Collection<String> createdByList) {
|
|
|
+ setCreatedBy_Terms(createdByList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Terms(Collection<String> createdByList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ TermsQueryBuilder builder = regTermsQ("createdBy", createdByList);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_InScope(Collection<String> createdByList) {
|
|
|
+ setCreatedBy_Terms(createdByList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_InScope(Collection<String> createdByList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ setCreatedBy_Terms(createdByList, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Match(String createdBy) {
|
|
|
+ setCreatedBy_Match(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Match(String createdBy, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_MatchPhrase(String createdBy) {
|
|
|
+ setCreatedBy_MatchPhrase(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_MatchPhrase(String createdBy, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhraseQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_MatchPhrasePrefix(String createdBy) {
|
|
|
+ setCreatedBy_MatchPhrasePrefix(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_MatchPhrasePrefix(String createdBy, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhrasePrefixQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Fuzzy(String createdBy) {
|
|
|
+ setCreatedBy_Fuzzy(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Fuzzy(String createdBy, ConditionOptionCall<FuzzyQueryBuilder> opLambda) {
|
|
|
+ FuzzyQueryBuilder builder = regFuzzyQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Prefix(String createdBy) {
|
|
|
+ setCreatedBy_Prefix(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Prefix(String createdBy, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
|
|
|
+ PrefixQueryBuilder builder = regPrefixQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Wildcard(String createdBy) {
|
|
|
+ setCreatedBy_Wildcard(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Wildcard(String createdBy, ConditionOptionCall<WildcardQueryBuilder> opLambda) {
|
|
|
+ WildcardQueryBuilder builder = regWildcardQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Regexp(String createdBy) {
|
|
|
+ setCreatedBy_Regexp(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Regexp(String createdBy, ConditionOptionCall<RegexpQueryBuilder> opLambda) {
|
|
|
+ RegexpQueryBuilder builder = regRegexpQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_GreaterThan(String createdBy) {
|
|
|
+ setCreatedBy_GreaterThan(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_GreaterThan(String createdBy, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("createdBy", ConditionKey.CK_GREATER_THAN, createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_LessThan(String createdBy) {
|
|
|
+ setCreatedBy_LessThan(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_LessThan(String createdBy, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("createdBy", ConditionKey.CK_LESS_THAN, createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_GreaterEqual(String createdBy) {
|
|
|
+ setCreatedBy_GreaterEqual(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_GreaterEqual(String createdBy, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("createdBy", ConditionKey.CK_GREATER_EQUAL, createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_LessEqual(String createdBy) {
|
|
|
+ setCreatedBy_LessEqual(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_LessEqual(String createdBy, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("createdBy", ConditionKey.CK_LESS_EQUAL, createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Exists() {
|
|
|
+ setCreatedBy_Exists(null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_Exists(ConditionOptionCall<ExistsQueryBuilder> opLambda) {
|
|
|
+ ExistsQueryBuilder builder = regExistsQ("createdBy");
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_CommonTerms(String createdBy) {
|
|
|
+ setCreatedBy_CommonTerms(createdBy, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy_CommonTerms(String createdBy, ConditionOptionCall<CommonTermsQueryBuilder> opLambda) {
|
|
|
+ CommonTermsQueryBuilder builder = regCommonTermsQ("createdBy", createdBy);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_CreatedBy_Asc() {
|
|
|
+ regOBA("createdBy");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_CreatedBy_Desc() {
|
|
|
+ regOBD("createdBy");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Equal(Long createdTime) {
|
|
|
+ setCreatedTime_Term(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Equal(Long createdTime, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ setCreatedTime_Term(createdTime, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Term(Long createdTime) {
|
|
|
+ setCreatedTime_Term(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Term(Long createdTime, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ TermQueryBuilder builder = regTermQ("createdTime", createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_NotEqual(Long createdTime) {
|
|
|
+ setCreatedTime_NotTerm(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_NotTerm(Long createdTime) {
|
|
|
+ setCreatedTime_NotTerm(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_NotEqual(Long createdTime, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ setCreatedTime_NotTerm(createdTime, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_NotTerm(Long createdTime, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ not(not -> not.setCreatedTime_Term(createdTime), opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Terms(Collection<Long> createdTimeList) {
|
|
|
+ setCreatedTime_Terms(createdTimeList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Terms(Collection<Long> createdTimeList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ TermsQueryBuilder builder = regTermsQ("createdTime", createdTimeList);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_InScope(Collection<Long> createdTimeList) {
|
|
|
+ setCreatedTime_Terms(createdTimeList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_InScope(Collection<Long> createdTimeList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ setCreatedTime_Terms(createdTimeList, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Match(Long createdTime) {
|
|
|
+ setCreatedTime_Match(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Match(Long createdTime, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchQ("createdTime", createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_MatchPhrase(Long createdTime) {
|
|
|
+ setCreatedTime_MatchPhrase(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_MatchPhrase(Long createdTime, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhraseQ("createdTime", createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_MatchPhrasePrefix(Long createdTime) {
|
|
|
+ setCreatedTime_MatchPhrasePrefix(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_MatchPhrasePrefix(Long createdTime, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhrasePrefixQ("createdTime", createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Fuzzy(Long createdTime) {
|
|
|
+ setCreatedTime_Fuzzy(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Fuzzy(Long createdTime, ConditionOptionCall<FuzzyQueryBuilder> opLambda) {
|
|
|
+ FuzzyQueryBuilder builder = regFuzzyQ("createdTime", createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_GreaterThan(Long createdTime) {
|
|
|
+ setCreatedTime_GreaterThan(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_GreaterThan(Long createdTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("createdTime", ConditionKey.CK_GREATER_THAN, createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_LessThan(Long createdTime) {
|
|
|
+ setCreatedTime_LessThan(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_LessThan(Long createdTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("createdTime", ConditionKey.CK_LESS_THAN, createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_GreaterEqual(Long createdTime) {
|
|
|
+ setCreatedTime_GreaterEqual(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_GreaterEqual(Long createdTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("createdTime", ConditionKey.CK_GREATER_EQUAL, createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_LessEqual(Long createdTime) {
|
|
|
+ setCreatedTime_LessEqual(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_LessEqual(Long createdTime, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("createdTime", ConditionKey.CK_LESS_EQUAL, createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Exists() {
|
|
|
+ setCreatedTime_Exists(null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_Exists(ConditionOptionCall<ExistsQueryBuilder> opLambda) {
|
|
|
+ ExistsQueryBuilder builder = regExistsQ("createdTime");
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_CommonTerms(Long createdTime) {
|
|
|
+ setCreatedTime_CommonTerms(createdTime, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime_CommonTerms(Long createdTime, ConditionOptionCall<CommonTermsQueryBuilder> opLambda) {
|
|
|
+ CommonTermsQueryBuilder builder = regCommonTermsQ("createdTime", createdTime);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_CreatedTime_Asc() {
|
|
|
+ regOBA("createdTime");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_CreatedTime_Desc() {
|
|
|
+ regOBD("createdTime");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Equal(String generator) {
|
|
|
+ setGenerator_Term(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Equal(String generator, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ setGenerator_Term(generator, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Term(String generator) {
|
|
|
+ setGenerator_Term(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Term(String generator, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ TermQueryBuilder builder = regTermQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_NotEqual(String generator) {
|
|
|
+ setGenerator_NotTerm(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_NotTerm(String generator) {
|
|
|
+ setGenerator_NotTerm(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_NotEqual(String generator, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ setGenerator_NotTerm(generator, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_NotTerm(String generator, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ not(not -> not.setGenerator_Term(generator), opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Terms(Collection<String> generatorList) {
|
|
|
+ setGenerator_Terms(generatorList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Terms(Collection<String> generatorList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ TermsQueryBuilder builder = regTermsQ("generator", generatorList);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_InScope(Collection<String> generatorList) {
|
|
|
+ setGenerator_Terms(generatorList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_InScope(Collection<String> generatorList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ setGenerator_Terms(generatorList, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Match(String generator) {
|
|
|
+ setGenerator_Match(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Match(String generator, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_MatchPhrase(String generator) {
|
|
|
+ setGenerator_MatchPhrase(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_MatchPhrase(String generator, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhraseQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_MatchPhrasePrefix(String generator) {
|
|
|
+ setGenerator_MatchPhrasePrefix(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_MatchPhrasePrefix(String generator, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhrasePrefixQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Fuzzy(String generator) {
|
|
|
+ setGenerator_Fuzzy(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Fuzzy(String generator, ConditionOptionCall<FuzzyQueryBuilder> opLambda) {
|
|
|
+ FuzzyQueryBuilder builder = regFuzzyQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Prefix(String generator) {
|
|
|
+ setGenerator_Prefix(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Prefix(String generator, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
|
|
|
+ PrefixQueryBuilder builder = regPrefixQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Wildcard(String generator) {
|
|
|
+ setGenerator_Wildcard(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Wildcard(String generator, ConditionOptionCall<WildcardQueryBuilder> opLambda) {
|
|
|
+ WildcardQueryBuilder builder = regWildcardQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Regexp(String generator) {
|
|
|
+ setGenerator_Regexp(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Regexp(String generator, ConditionOptionCall<RegexpQueryBuilder> opLambda) {
|
|
|
+ RegexpQueryBuilder builder = regRegexpQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_GreaterThan(String generator) {
|
|
|
+ setGenerator_GreaterThan(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_GreaterThan(String generator, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("generator", ConditionKey.CK_GREATER_THAN, generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_LessThan(String generator) {
|
|
|
+ setGenerator_LessThan(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_LessThan(String generator, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("generator", ConditionKey.CK_LESS_THAN, generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_GreaterEqual(String generator) {
|
|
|
+ setGenerator_GreaterEqual(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_GreaterEqual(String generator, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("generator", ConditionKey.CK_GREATER_EQUAL, generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_LessEqual(String generator) {
|
|
|
+ setGenerator_LessEqual(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_LessEqual(String generator, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("generator", ConditionKey.CK_LESS_EQUAL, generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Exists() {
|
|
|
+ setGenerator_Exists(null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_Exists(ConditionOptionCall<ExistsQueryBuilder> opLambda) {
|
|
|
+ ExistsQueryBuilder builder = regExistsQ("generator");
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_CommonTerms(String generator) {
|
|
|
+ setGenerator_CommonTerms(generator, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGenerator_CommonTerms(String generator, ConditionOptionCall<CommonTermsQueryBuilder> opLambda) {
|
|
|
+ CommonTermsQueryBuilder builder = regCommonTermsQ("generator", generator);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_Generator_Asc() {
|
|
|
+ regOBA("generator");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_Generator_Desc() {
|
|
|
+ regOBD("generator");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Equal(String path) {
|
|
|
+ setPath_Term(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Equal(String path, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ setPath_Term(path, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Term(String path) {
|
|
|
+ setPath_Term(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Term(String path, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ TermQueryBuilder builder = regTermQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_NotEqual(String path) {
|
|
|
+ setPath_NotTerm(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_NotTerm(String path) {
|
|
|
+ setPath_NotTerm(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_NotEqual(String path, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ setPath_NotTerm(path, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_NotTerm(String path, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ not(not -> not.setPath_Term(path), opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Terms(Collection<String> pathList) {
|
|
|
+ setPath_Terms(pathList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Terms(Collection<String> pathList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ TermsQueryBuilder builder = regTermsQ("path", pathList);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_InScope(Collection<String> pathList) {
|
|
|
+ setPath_Terms(pathList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_InScope(Collection<String> pathList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ setPath_Terms(pathList, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Match(String path) {
|
|
|
+ setPath_Match(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Match(String path, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_MatchPhrase(String path) {
|
|
|
+ setPath_MatchPhrase(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_MatchPhrase(String path, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhraseQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_MatchPhrasePrefix(String path) {
|
|
|
+ setPath_MatchPhrasePrefix(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_MatchPhrasePrefix(String path, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhrasePrefixQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Fuzzy(String path) {
|
|
|
+ setPath_Fuzzy(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Fuzzy(String path, ConditionOptionCall<FuzzyQueryBuilder> opLambda) {
|
|
|
+ FuzzyQueryBuilder builder = regFuzzyQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Prefix(String path) {
|
|
|
+ setPath_Prefix(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Prefix(String path, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
|
|
|
+ PrefixQueryBuilder builder = regPrefixQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Wildcard(String path) {
|
|
|
+ setPath_Wildcard(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Wildcard(String path, ConditionOptionCall<WildcardQueryBuilder> opLambda) {
|
|
|
+ WildcardQueryBuilder builder = regWildcardQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Regexp(String path) {
|
|
|
+ setPath_Regexp(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Regexp(String path, ConditionOptionCall<RegexpQueryBuilder> opLambda) {
|
|
|
+ RegexpQueryBuilder builder = regRegexpQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_GreaterThan(String path) {
|
|
|
+ setPath_GreaterThan(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_GreaterThan(String path, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("path", ConditionKey.CK_GREATER_THAN, path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_LessThan(String path) {
|
|
|
+ setPath_LessThan(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_LessThan(String path, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("path", ConditionKey.CK_LESS_THAN, path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_GreaterEqual(String path) {
|
|
|
+ setPath_GreaterEqual(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_GreaterEqual(String path, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("path", ConditionKey.CK_GREATER_EQUAL, path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_LessEqual(String path) {
|
|
|
+ setPath_LessEqual(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_LessEqual(String path, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("path", ConditionKey.CK_LESS_EQUAL, path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Exists() {
|
|
|
+ setPath_Exists(null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_Exists(ConditionOptionCall<ExistsQueryBuilder> opLambda) {
|
|
|
+ ExistsQueryBuilder builder = regExistsQ("path");
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_CommonTerms(String path) {
|
|
|
+ setPath_CommonTerms(path, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPath_CommonTerms(String path, ConditionOptionCall<CommonTermsQueryBuilder> opLambda) {
|
|
|
+ CommonTermsQueryBuilder builder = regCommonTermsQ("path", path);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_Path_Asc() {
|
|
|
+ regOBA("path");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_Path_Desc() {
|
|
|
+ regOBD("path");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Equal(String url) {
|
|
|
+ setUrl_Term(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Equal(String url, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ setUrl_Term(url, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Term(String url) {
|
|
|
+ setUrl_Term(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Term(String url, ConditionOptionCall<TermQueryBuilder> opLambda) {
|
|
|
+ TermQueryBuilder builder = regTermQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_NotEqual(String url) {
|
|
|
+ setUrl_NotTerm(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_NotTerm(String url) {
|
|
|
+ setUrl_NotTerm(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_NotEqual(String url, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ setUrl_NotTerm(url, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_NotTerm(String url, ConditionOptionCall<BoolQueryBuilder> opLambda) {
|
|
|
+ not(not -> not.setUrl_Term(url), opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Terms(Collection<String> urlList) {
|
|
|
+ setUrl_Terms(urlList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Terms(Collection<String> urlList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ TermsQueryBuilder builder = regTermsQ("url", urlList);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_InScope(Collection<String> urlList) {
|
|
|
+ setUrl_Terms(urlList, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_InScope(Collection<String> urlList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
|
|
|
+ setUrl_Terms(urlList, opLambda);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Match(String url) {
|
|
|
+ setUrl_Match(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Match(String url, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_MatchPhrase(String url) {
|
|
|
+ setUrl_MatchPhrase(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_MatchPhrase(String url, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhraseQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_MatchPhrasePrefix(String url) {
|
|
|
+ setUrl_MatchPhrasePrefix(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_MatchPhrasePrefix(String url, ConditionOptionCall<MatchQueryBuilder> opLambda) {
|
|
|
+ MatchQueryBuilder builder = regMatchPhrasePrefixQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Fuzzy(String url) {
|
|
|
+ setUrl_Fuzzy(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Fuzzy(String url, ConditionOptionCall<FuzzyQueryBuilder> opLambda) {
|
|
|
+ FuzzyQueryBuilder builder = regFuzzyQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Prefix(String url) {
|
|
|
+ setUrl_Prefix(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Prefix(String url, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
|
|
|
+ PrefixQueryBuilder builder = regPrefixQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Wildcard(String url) {
|
|
|
+ setUrl_Wildcard(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Wildcard(String url, ConditionOptionCall<WildcardQueryBuilder> opLambda) {
|
|
|
+ WildcardQueryBuilder builder = regWildcardQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Regexp(String url) {
|
|
|
+ setUrl_Regexp(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Regexp(String url, ConditionOptionCall<RegexpQueryBuilder> opLambda) {
|
|
|
+ RegexpQueryBuilder builder = regRegexpQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_GreaterThan(String url) {
|
|
|
+ setUrl_GreaterThan(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_GreaterThan(String url, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("url", ConditionKey.CK_GREATER_THAN, url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_LessThan(String url) {
|
|
|
+ setUrl_LessThan(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_LessThan(String url, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("url", ConditionKey.CK_LESS_THAN, url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_GreaterEqual(String url) {
|
|
|
+ setUrl_GreaterEqual(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_GreaterEqual(String url, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("url", ConditionKey.CK_GREATER_EQUAL, url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_LessEqual(String url) {
|
|
|
+ setUrl_LessEqual(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_LessEqual(String url, ConditionOptionCall<RangeQueryBuilder> opLambda) {
|
|
|
+ RangeQueryBuilder builder = regRangeQ("url", ConditionKey.CK_LESS_EQUAL, url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Exists() {
|
|
|
+ setUrl_Exists(null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_Exists(ConditionOptionCall<ExistsQueryBuilder> opLambda) {
|
|
|
+ ExistsQueryBuilder builder = regExistsQ("url");
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_CommonTerms(String url) {
|
|
|
+ setUrl_CommonTerms(url, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl_CommonTerms(String url, ConditionOptionCall<CommonTermsQueryBuilder> opLambda) {
|
|
|
+ CommonTermsQueryBuilder builder = regCommonTermsQ("url", url);
|
|
|
+ if (opLambda != null) {
|
|
|
+ opLambda.callback(builder);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_Url_Asc() {
|
|
|
+ regOBA("url");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BsThumbnailQueueCQ addOrderBy_Url_Desc() {
|
|
|
+ regOBD("url");
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|