OSDN Git Service

"https://svn.sourceforge.jp/svnroot/ea2ddl" にプロジェクト "ea2ddl-dao" を共用
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / cbean / cq / bs / AbstractBsTDocumentCQ.java
1 package jp.sourceforge.ea2ddl.dao.cbean.cq.bs;\r
2 \r
3 import java.util.Collection;\r
4 \r
5 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.*;\r
6 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.ckey.*;\r
7 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.cvalue.ConditionValue;\r
8 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.sqlclause.SqlClause;\r
9 import jp.sourceforge.ea2ddl.dao.cbean.*;\r
10 import jp.sourceforge.ea2ddl.dao.cbean.cq.*;\r
11 \r
12 /**\r
13  * The abstract condition-query of t_document.\r
14  * @author DBFlute(AutoGenerator)\r
15  */
16 @SuppressWarnings("unchecked")\r
17 public abstract class AbstractBsTDocumentCQ extends AbstractConditionQuery {\r
18 \r
19     // ===================================================================================\r
20     //                                                                         Constructor\r
21     //                                                                         ===========\r
22     public AbstractBsTDocumentCQ(ConditionQuery childQuery, SqlClause sqlClause, String aliasName, int nestLevel) {\r
23         super(childQuery, sqlClause, aliasName, nestLevel);\r
24     }\r
25 \r
26     // ===================================================================================\r
27     //                                                                          Table Name\r
28     //                                                                          ==========\r
29     public String getTableDbName() {\r
30         return "t_document";\r
31     }\r
32     \r
33     public String getTableSqlName() {\r
34         return "t_document";\r
35     }\r
36 \r
37     // ===================================================================================\r
38     //                                                                               Query\r
39     //                                                                               =====\r
40 \r
41     /**\r
42      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {UQ : VARCHAR(40)}\r
43      * @param docid The value of docid as equal.\r
44      */\r
45     public void setDocid_Equal(String docid) {\r
46         regDocid(CK_EQ, fRES(docid));\r
47     }\r
48 \r
49     /**\r
50      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
51      * @param docid The value of docid as notEqual.\r
52      */\r
53     public void setDocid_NotEqual(String docid) {\r
54         regDocid(CK_NE, fRES(docid));\r
55     }\r
56 \r
57     /**\r
58      * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
59      * @param docid The value of docid as greaterThan.\r
60      */\r
61     public void setDocid_GreaterThan(String docid) {\r
62         regDocid(CK_GT, fRES(docid));\r
63     }\r
64 \r
65     /**\r
66      * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
67      * @param docid The value of docid as lessThan.\r
68      */\r
69     public void setDocid_LessThan(String docid) {\r
70         regDocid(CK_LT, fRES(docid));\r
71     }\r
72 \r
73     /**\r
74      * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
75      * @param docid The value of docid as greaterEqual.\r
76      */\r
77     public void setDocid_GreaterEqual(String docid) {\r
78         regDocid(CK_GE, fRES(docid));\r
79     }\r
80 \r
81     /**\r
82      * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
83      * @param docid The value of docid as lessEqual.\r
84      */\r
85     public void setDocid_LessEqual(String docid) {\r
86         regDocid(CK_LE, fRES(docid));\r
87     }\r
88 \r
89     /**\r
90      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
91      * @param docid The value of docid as prefixSearch.\r
92      */\r
93     public void setDocid_PrefixSearch(String docid) {\r
94         regDocid(CK_PS, fRES(docid));\r
95     }\r
96 \r
97     /**\r
98      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
99      * @param docid The value of docid as likeSearch.\r
100      * @param likeSearchOption The option of like-search. (NotNull)\r
101      */\r
102     public void setDocid_LikeSearch(String docid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
103         registerLikeSearchQuery(CK_LS, fRES(docid), getCValueDocid(), "DocID", "Docid", "docid", likeSearchOption);\r
104     }\r
105 \r
106     /**\r
107      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
108      * @param docidList The collection of docid as inScope.\r
109      */\r
110     public void setDocid_InScope(Collection<String> docidList) {\r
111         regDocid(CK_INS, cTL(docidList));\r
112     }\r
113 \r
114     /**\r
115      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
116      * @param docid The collection of docid as inScope.\r
117      * @param inScopeOption The option of in-scope. (NotNull)\r
118      */\r
119     public void setDocid_InScope(String docid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
120         registerInScopeQuery(CK_INS, fRES(docid), getCValueDocid(), "DocID", "Docid", "docid", inScopeOption);\r
121     }\r
122 \r
123     /**\r
124      * IsNull(is null). And OnceRegistered.\r
125      */\r
126     public void setDocid_IsNull() { regDocid(CK_ISN, DUMMY_OBJECT); }\r
127 \r
128     /**\r
129      * IsNotNull(is not null). And OnceRegistered.\r
130      */\r
131     public void setDocid_IsNotNull() { regDocid(CK_ISNN, DUMMY_OBJECT); }\r
132 \r
133     protected void regDocid(ConditionKey key, Object value) {\r
134         registerQuery(key, value, getCValueDocid(), "DocID", "Docid", "docid");\r
135     }\r
136     protected void registerInlineDocid(ConditionKey key, Object value) {\r
137         registerInlineQuery(key, value, getCValueDocid(), "DocID", "Docid", "docid");\r
138     }\r
139     abstract protected ConditionValue getCValueDocid();\r
140 \r
141     /**\r
142      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(100)}\r
143      * @param docname The value of docname as equal.\r
144      */\r
145     public void setDocname_Equal(String docname) {\r
146         regDocname(CK_EQ, fRES(docname));\r
147     }\r
148 \r
149     /**\r
150      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
151      * @param docname The value of docname as notEqual.\r
152      */\r
153     public void setDocname_NotEqual(String docname) {\r
154         regDocname(CK_NE, fRES(docname));\r
155     }\r
156 \r
157     /**\r
158      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
159      * @param docname The value of docname as greaterThan.\r
160      */\r
161     public void setDocname_GreaterThan(String docname) {\r
162         regDocname(CK_GT, fRES(docname));\r
163     }\r
164 \r
165     /**\r
166      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
167      * @param docname The value of docname as lessThan.\r
168      */\r
169     public void setDocname_LessThan(String docname) {\r
170         regDocname(CK_LT, fRES(docname));\r
171     }\r
172 \r
173     /**\r
174      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
175      * @param docname The value of docname as greaterEqual.\r
176      */\r
177     public void setDocname_GreaterEqual(String docname) {\r
178         regDocname(CK_GE, fRES(docname));\r
179     }\r
180 \r
181     /**\r
182      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
183      * @param docname The value of docname as lessEqual.\r
184      */\r
185     public void setDocname_LessEqual(String docname) {\r
186         regDocname(CK_LE, fRES(docname));\r
187     }\r
188 \r
189     /**\r
190      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
191      * @param docname The value of docname as prefixSearch.\r
192      */\r
193     public void setDocname_PrefixSearch(String docname) {\r
194         regDocname(CK_PS, fRES(docname));\r
195     }\r
196 \r
197     /**\r
198      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
199      * @param docname The value of docname as likeSearch.\r
200      * @param likeSearchOption The option of like-search. (NotNull)\r
201      */\r
202     public void setDocname_LikeSearch(String docname, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
203         registerLikeSearchQuery(CK_LS, fRES(docname), getCValueDocname(), "DocName", "Docname", "docname", likeSearchOption);\r
204     }\r
205 \r
206     /**\r
207      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
208      * @param docnameList The collection of docname as inScope.\r
209      */\r
210     public void setDocname_InScope(Collection<String> docnameList) {\r
211         regDocname(CK_INS, cTL(docnameList));\r
212     }\r
213 \r
214     /**\r
215      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
216      * @param docname The collection of docname as inScope.\r
217      * @param inScopeOption The option of in-scope. (NotNull)\r
218      */\r
219     public void setDocname_InScope(String docname, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
220         registerInScopeQuery(CK_INS, fRES(docname), getCValueDocname(), "DocName", "Docname", "docname", inScopeOption);\r
221     }\r
222 \r
223     /**\r
224      * IsNull(is null). And OnceRegistered.\r
225      */\r
226     public void setDocname_IsNull() { regDocname(CK_ISN, DUMMY_OBJECT); }\r
227 \r
228     /**\r
229      * IsNotNull(is not null). And OnceRegistered.\r
230      */\r
231     public void setDocname_IsNotNull() { regDocname(CK_ISNN, DUMMY_OBJECT); }\r
232 \r
233     protected void regDocname(ConditionKey key, Object value) {\r
234         registerQuery(key, value, getCValueDocname(), "DocName", "Docname", "docname");\r
235     }\r
236     protected void registerInlineDocname(ConditionKey key, Object value) {\r
237         registerInlineQuery(key, value, getCValueDocname(), "DocName", "Docname", "docname");\r
238     }\r
239     abstract protected ConditionValue getCValueDocname();\r
240 \r
241     /**\r
242      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
243      * @param notes The value of notes as equal.\r
244      */\r
245     public void setNotes_Equal(String notes) {\r
246         regNotes(CK_EQ, fRES(notes));\r
247     }\r
248 \r
249     /**\r
250      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
251      * @param notes The value of notes as notEqual.\r
252      */\r
253     public void setNotes_NotEqual(String notes) {\r
254         regNotes(CK_NE, fRES(notes));\r
255     }\r
256 \r
257     /**\r
258      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
259      * @param notes The value of notes as greaterThan.\r
260      */\r
261     public void setNotes_GreaterThan(String notes) {\r
262         regNotes(CK_GT, fRES(notes));\r
263     }\r
264 \r
265     /**\r
266      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
267      * @param notes The value of notes as lessThan.\r
268      */\r
269     public void setNotes_LessThan(String notes) {\r
270         regNotes(CK_LT, fRES(notes));\r
271     }\r
272 \r
273     /**\r
274      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
275      * @param notes The value of notes as greaterEqual.\r
276      */\r
277     public void setNotes_GreaterEqual(String notes) {\r
278         regNotes(CK_GE, fRES(notes));\r
279     }\r
280 \r
281     /**\r
282      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
283      * @param notes The value of notes as lessEqual.\r
284      */\r
285     public void setNotes_LessEqual(String notes) {\r
286         regNotes(CK_LE, fRES(notes));\r
287     }\r
288 \r
289     /**\r
290      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
291      * @param notes The value of notes as prefixSearch.\r
292      */\r
293     public void setNotes_PrefixSearch(String notes) {\r
294         regNotes(CK_PS, fRES(notes));\r
295     }\r
296 \r
297     /**\r
298      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
299      * @param notes The value of notes as likeSearch.\r
300      * @param likeSearchOption The option of like-search. (NotNull)\r
301      */\r
302     public void setNotes_LikeSearch(String notes, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
303         registerLikeSearchQuery(CK_LS, fRES(notes), getCValueNotes(), "Notes", "Notes", "notes", likeSearchOption);\r
304     }\r
305 \r
306     /**\r
307      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
308      * @param notesList The collection of notes as inScope.\r
309      */\r
310     public void setNotes_InScope(Collection<String> notesList) {\r
311         regNotes(CK_INS, cTL(notesList));\r
312     }\r
313 \r
314     /**\r
315      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
316      * @param notes The collection of notes as inScope.\r
317      * @param inScopeOption The option of in-scope. (NotNull)\r
318      */\r
319     public void setNotes_InScope(String notes, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
320         registerInScopeQuery(CK_INS, fRES(notes), getCValueNotes(), "Notes", "Notes", "notes", inScopeOption);\r
321     }\r
322 \r
323     /**\r
324      * IsNull(is null). And OnceRegistered.\r
325      */\r
326     public void setNotes_IsNull() { regNotes(CK_ISN, DUMMY_OBJECT); }\r
327 \r
328     /**\r
329      * IsNotNull(is not null). And OnceRegistered.\r
330      */\r
331     public void setNotes_IsNotNull() { regNotes(CK_ISNN, DUMMY_OBJECT); }\r
332 \r
333     protected void regNotes(ConditionKey key, Object value) {\r
334         registerQuery(key, value, getCValueNotes(), "Notes", "Notes", "notes");\r
335     }\r
336     protected void registerInlineNotes(ConditionKey key, Object value) {\r
337         registerInlineQuery(key, value, getCValueNotes(), "Notes", "Notes", "notes");\r
338     }\r
339     abstract protected ConditionValue getCValueNotes();\r
340 \r
341     /**\r
342      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
343      * @param style The value of style as equal.\r
344      */\r
345     public void setStyle_Equal(String style) {\r
346         regStyle(CK_EQ, fRES(style));\r
347     }\r
348 \r
349     /**\r
350      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
351      * @param style The value of style as notEqual.\r
352      */\r
353     public void setStyle_NotEqual(String style) {\r
354         regStyle(CK_NE, fRES(style));\r
355     }\r
356 \r
357     /**\r
358      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
359      * @param style The value of style as greaterThan.\r
360      */\r
361     public void setStyle_GreaterThan(String style) {\r
362         regStyle(CK_GT, fRES(style));\r
363     }\r
364 \r
365     /**\r
366      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
367      * @param style The value of style as lessThan.\r
368      */\r
369     public void setStyle_LessThan(String style) {\r
370         regStyle(CK_LT, fRES(style));\r
371     }\r
372 \r
373     /**\r
374      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
375      * @param style The value of style as greaterEqual.\r
376      */\r
377     public void setStyle_GreaterEqual(String style) {\r
378         regStyle(CK_GE, fRES(style));\r
379     }\r
380 \r
381     /**\r
382      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
383      * @param style The value of style as lessEqual.\r
384      */\r
385     public void setStyle_LessEqual(String style) {\r
386         regStyle(CK_LE, fRES(style));\r
387     }\r
388 \r
389     /**\r
390      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
391      * @param style The value of style as prefixSearch.\r
392      */\r
393     public void setStyle_PrefixSearch(String style) {\r
394         regStyle(CK_PS, fRES(style));\r
395     }\r
396 \r
397     /**\r
398      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
399      * @param style The value of style as likeSearch.\r
400      * @param likeSearchOption The option of like-search. (NotNull)\r
401      */\r
402     public void setStyle_LikeSearch(String style, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
403         registerLikeSearchQuery(CK_LS, fRES(style), getCValueStyle(), "Style", "Style", "style", likeSearchOption);\r
404     }\r
405 \r
406     /**\r
407      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
408      * @param styleList The collection of style as inScope.\r
409      */\r
410     public void setStyle_InScope(Collection<String> styleList) {\r
411         regStyle(CK_INS, cTL(styleList));\r
412     }\r
413 \r
414     /**\r
415      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
416      * @param style The collection of style as inScope.\r
417      * @param inScopeOption The option of in-scope. (NotNull)\r
418      */\r
419     public void setStyle_InScope(String style, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
420         registerInScopeQuery(CK_INS, fRES(style), getCValueStyle(), "Style", "Style", "style", inScopeOption);\r
421     }\r
422 \r
423     /**\r
424      * IsNull(is null). And OnceRegistered.\r
425      */\r
426     public void setStyle_IsNull() { regStyle(CK_ISN, DUMMY_OBJECT); }\r
427 \r
428     /**\r
429      * IsNotNull(is not null). And OnceRegistered.\r
430      */\r
431     public void setStyle_IsNotNull() { regStyle(CK_ISNN, DUMMY_OBJECT); }\r
432 \r
433     protected void regStyle(ConditionKey key, Object value) {\r
434         registerQuery(key, value, getCValueStyle(), "Style", "Style", "style");\r
435     }\r
436     protected void registerInlineStyle(ConditionKey key, Object value) {\r
437         registerInlineQuery(key, value, getCValueStyle(), "Style", "Style", "style");\r
438     }\r
439     abstract protected ConditionValue getCValueStyle();\r
440 \r
441     /**\r
442      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(40)}\r
443      * @param elementid The value of elementid as equal.\r
444      */\r
445     public void setElementid_Equal(String elementid) {\r
446         regElementid(CK_EQ, fRES(elementid));\r
447     }\r
448 \r
449     /**\r
450      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
451      * @param elementid The value of elementid as notEqual.\r
452      */\r
453     public void setElementid_NotEqual(String elementid) {\r
454         regElementid(CK_NE, fRES(elementid));\r
455     }\r
456 \r
457     /**\r
458      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
459      * @param elementid The value of elementid as greaterThan.\r
460      */\r
461     public void setElementid_GreaterThan(String elementid) {\r
462         regElementid(CK_GT, fRES(elementid));\r
463     }\r
464 \r
465     /**\r
466      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
467      * @param elementid The value of elementid as lessThan.\r
468      */\r
469     public void setElementid_LessThan(String elementid) {\r
470         regElementid(CK_LT, fRES(elementid));\r
471     }\r
472 \r
473     /**\r
474      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
475      * @param elementid The value of elementid as greaterEqual.\r
476      */\r
477     public void setElementid_GreaterEqual(String elementid) {\r
478         regElementid(CK_GE, fRES(elementid));\r
479     }\r
480 \r
481     /**\r
482      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
483      * @param elementid The value of elementid as lessEqual.\r
484      */\r
485     public void setElementid_LessEqual(String elementid) {\r
486         regElementid(CK_LE, fRES(elementid));\r
487     }\r
488 \r
489     /**\r
490      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
491      * @param elementid The value of elementid as prefixSearch.\r
492      */\r
493     public void setElementid_PrefixSearch(String elementid) {\r
494         regElementid(CK_PS, fRES(elementid));\r
495     }\r
496 \r
497     /**\r
498      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
499      * @param elementid The value of elementid as likeSearch.\r
500      * @param likeSearchOption The option of like-search. (NotNull)\r
501      */\r
502     public void setElementid_LikeSearch(String elementid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
503         registerLikeSearchQuery(CK_LS, fRES(elementid), getCValueElementid(), "ElementID", "Elementid", "elementid", likeSearchOption);\r
504     }\r
505 \r
506     /**\r
507      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
508      * @param elementidList The collection of elementid as inScope.\r
509      */\r
510     public void setElementid_InScope(Collection<String> elementidList) {\r
511         regElementid(CK_INS, cTL(elementidList));\r
512     }\r
513 \r
514     /**\r
515      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
516      * @param elementid The collection of elementid as inScope.\r
517      * @param inScopeOption The option of in-scope. (NotNull)\r
518      */\r
519     public void setElementid_InScope(String elementid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
520         registerInScopeQuery(CK_INS, fRES(elementid), getCValueElementid(), "ElementID", "Elementid", "elementid", inScopeOption);\r
521     }\r
522 \r
523     /**\r
524      * IsNull(is null). And OnceRegistered.\r
525      */\r
526     public void setElementid_IsNull() { regElementid(CK_ISN, DUMMY_OBJECT); }\r
527 \r
528     /**\r
529      * IsNotNull(is not null). And OnceRegistered.\r
530      */\r
531     public void setElementid_IsNotNull() { regElementid(CK_ISNN, DUMMY_OBJECT); }\r
532 \r
533     protected void regElementid(ConditionKey key, Object value) {\r
534         registerQuery(key, value, getCValueElementid(), "ElementID", "Elementid", "elementid");\r
535     }\r
536     protected void registerInlineElementid(ConditionKey key, Object value) {\r
537         registerInlineQuery(key, value, getCValueElementid(), "ElementID", "Elementid", "elementid");\r
538     }\r
539     abstract protected ConditionValue getCValueElementid();\r
540 \r
541     /**\r
542      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
543      * @param elementtype The value of elementtype as equal.\r
544      */\r
545     public void setElementtype_Equal(String elementtype) {\r
546         regElementtype(CK_EQ, fRES(elementtype));\r
547     }\r
548 \r
549     /**\r
550      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
551      * @param elementtype The value of elementtype as notEqual.\r
552      */\r
553     public void setElementtype_NotEqual(String elementtype) {\r
554         regElementtype(CK_NE, fRES(elementtype));\r
555     }\r
556 \r
557     /**\r
558      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
559      * @param elementtype The value of elementtype as greaterThan.\r
560      */\r
561     public void setElementtype_GreaterThan(String elementtype) {\r
562         regElementtype(CK_GT, fRES(elementtype));\r
563     }\r
564 \r
565     /**\r
566      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
567      * @param elementtype The value of elementtype as lessThan.\r
568      */\r
569     public void setElementtype_LessThan(String elementtype) {\r
570         regElementtype(CK_LT, fRES(elementtype));\r
571     }\r
572 \r
573     /**\r
574      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
575      * @param elementtype The value of elementtype as greaterEqual.\r
576      */\r
577     public void setElementtype_GreaterEqual(String elementtype) {\r
578         regElementtype(CK_GE, fRES(elementtype));\r
579     }\r
580 \r
581     /**\r
582      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
583      * @param elementtype The value of elementtype as lessEqual.\r
584      */\r
585     public void setElementtype_LessEqual(String elementtype) {\r
586         regElementtype(CK_LE, fRES(elementtype));\r
587     }\r
588 \r
589     /**\r
590      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
591      * @param elementtype The value of elementtype as prefixSearch.\r
592      */\r
593     public void setElementtype_PrefixSearch(String elementtype) {\r
594         regElementtype(CK_PS, fRES(elementtype));\r
595     }\r
596 \r
597     /**\r
598      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
599      * @param elementtype The value of elementtype as likeSearch.\r
600      * @param likeSearchOption The option of like-search. (NotNull)\r
601      */\r
602     public void setElementtype_LikeSearch(String elementtype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
603         registerLikeSearchQuery(CK_LS, fRES(elementtype), getCValueElementtype(), "ElementType", "Elementtype", "elementtype", likeSearchOption);\r
604     }\r
605 \r
606     /**\r
607      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
608      * @param elementtypeList The collection of elementtype as inScope.\r
609      */\r
610     public void setElementtype_InScope(Collection<String> elementtypeList) {\r
611         regElementtype(CK_INS, cTL(elementtypeList));\r
612     }\r
613 \r
614     /**\r
615      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
616      * @param elementtype The collection of elementtype as inScope.\r
617      * @param inScopeOption The option of in-scope. (NotNull)\r
618      */\r
619     public void setElementtype_InScope(String elementtype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
620         registerInScopeQuery(CK_INS, fRES(elementtype), getCValueElementtype(), "ElementType", "Elementtype", "elementtype", inScopeOption);\r
621     }\r
622 \r
623     /**\r
624      * IsNull(is null). And OnceRegistered.\r
625      */\r
626     public void setElementtype_IsNull() { regElementtype(CK_ISN, DUMMY_OBJECT); }\r
627 \r
628     /**\r
629      * IsNotNull(is not null). And OnceRegistered.\r
630      */\r
631     public void setElementtype_IsNotNull() { regElementtype(CK_ISNN, DUMMY_OBJECT); }\r
632 \r
633     protected void regElementtype(ConditionKey key, Object value) {\r
634         registerQuery(key, value, getCValueElementtype(), "ElementType", "Elementtype", "elementtype");\r
635     }\r
636     protected void registerInlineElementtype(ConditionKey key, Object value) {\r
637         registerInlineQuery(key, value, getCValueElementtype(), "ElementType", "Elementtype", "elementtype");\r
638     }\r
639     abstract protected ConditionValue getCValueElementtype();\r
640 \r
641     /**\r
642      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
643      * @param strcontent The value of strcontent as equal.\r
644      */\r
645     public void setStrcontent_Equal(String strcontent) {\r
646         regStrcontent(CK_EQ, fRES(strcontent));\r
647     }\r
648 \r
649     /**\r
650      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
651      * @param strcontent The value of strcontent as notEqual.\r
652      */\r
653     public void setStrcontent_NotEqual(String strcontent) {\r
654         regStrcontent(CK_NE, fRES(strcontent));\r
655     }\r
656 \r
657     /**\r
658      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
659      * @param strcontent The value of strcontent as greaterThan.\r
660      */\r
661     public void setStrcontent_GreaterThan(String strcontent) {\r
662         regStrcontent(CK_GT, fRES(strcontent));\r
663     }\r
664 \r
665     /**\r
666      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
667      * @param strcontent The value of strcontent as lessThan.\r
668      */\r
669     public void setStrcontent_LessThan(String strcontent) {\r
670         regStrcontent(CK_LT, fRES(strcontent));\r
671     }\r
672 \r
673     /**\r
674      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
675      * @param strcontent The value of strcontent as greaterEqual.\r
676      */\r
677     public void setStrcontent_GreaterEqual(String strcontent) {\r
678         regStrcontent(CK_GE, fRES(strcontent));\r
679     }\r
680 \r
681     /**\r
682      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
683      * @param strcontent The value of strcontent as lessEqual.\r
684      */\r
685     public void setStrcontent_LessEqual(String strcontent) {\r
686         regStrcontent(CK_LE, fRES(strcontent));\r
687     }\r
688 \r
689     /**\r
690      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
691      * @param strcontent The value of strcontent as prefixSearch.\r
692      */\r
693     public void setStrcontent_PrefixSearch(String strcontent) {\r
694         regStrcontent(CK_PS, fRES(strcontent));\r
695     }\r
696 \r
697     /**\r
698      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
699      * @param strcontent The value of strcontent as likeSearch.\r
700      * @param likeSearchOption The option of like-search. (NotNull)\r
701      */\r
702     public void setStrcontent_LikeSearch(String strcontent, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
703         registerLikeSearchQuery(CK_LS, fRES(strcontent), getCValueStrcontent(), "StrContent", "Strcontent", "strcontent", likeSearchOption);\r
704     }\r
705 \r
706     /**\r
707      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
708      * @param strcontentList The collection of strcontent as inScope.\r
709      */\r
710     public void setStrcontent_InScope(Collection<String> strcontentList) {\r
711         regStrcontent(CK_INS, cTL(strcontentList));\r
712     }\r
713 \r
714     /**\r
715      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
716      * @param strcontent The collection of strcontent as inScope.\r
717      * @param inScopeOption The option of in-scope. (NotNull)\r
718      */\r
719     public void setStrcontent_InScope(String strcontent, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
720         registerInScopeQuery(CK_INS, fRES(strcontent), getCValueStrcontent(), "StrContent", "Strcontent", "strcontent", inScopeOption);\r
721     }\r
722 \r
723     /**\r
724      * IsNull(is null). And OnceRegistered.\r
725      */\r
726     public void setStrcontent_IsNull() { regStrcontent(CK_ISN, DUMMY_OBJECT); }\r
727 \r
728     /**\r
729      * IsNotNull(is not null). And OnceRegistered.\r
730      */\r
731     public void setStrcontent_IsNotNull() { regStrcontent(CK_ISNN, DUMMY_OBJECT); }\r
732 \r
733     protected void regStrcontent(ConditionKey key, Object value) {\r
734         registerQuery(key, value, getCValueStrcontent(), "StrContent", "Strcontent", "strcontent");\r
735     }\r
736     protected void registerInlineStrcontent(ConditionKey key, Object value) {\r
737         registerInlineQuery(key, value, getCValueStrcontent(), "StrContent", "Strcontent", "strcontent");\r
738     }\r
739     abstract protected ConditionValue getCValueStrcontent();\r
740 \r
741     /**\r
742      * IsNull(is null). And OnceRegistered.\r
743      */\r
744     public void setBincontent_IsNull() { regBincontent(CK_ISN, DUMMY_OBJECT); }\r
745 \r
746     /**\r
747      * IsNotNull(is not null). And OnceRegistered.\r
748      */\r
749     public void setBincontent_IsNotNull() { regBincontent(CK_ISNN, DUMMY_OBJECT); }\r
750 \r
751     protected void regBincontent(ConditionKey key, Object value) {\r
752         registerQuery(key, value, getCValueBincontent(), "BinContent", "Bincontent", "bincontent");\r
753     }\r
754     protected void registerInlineBincontent(ConditionKey key, Object value) {\r
755         registerInlineQuery(key, value, getCValueBincontent(), "BinContent", "Bincontent", "bincontent");\r
756     }\r
757     abstract protected ConditionValue getCValueBincontent();\r
758 \r
759     /**\r
760      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(100)}\r
761      * @param doctype The value of doctype as equal.\r
762      */\r
763     public void setDoctype_Equal(String doctype) {\r
764         regDoctype(CK_EQ, fRES(doctype));\r
765     }\r
766 \r
767     /**\r
768      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
769      * @param doctype The value of doctype as notEqual.\r
770      */\r
771     public void setDoctype_NotEqual(String doctype) {\r
772         regDoctype(CK_NE, fRES(doctype));\r
773     }\r
774 \r
775     /**\r
776      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
777      * @param doctype The value of doctype as greaterThan.\r
778      */\r
779     public void setDoctype_GreaterThan(String doctype) {\r
780         regDoctype(CK_GT, fRES(doctype));\r
781     }\r
782 \r
783     /**\r
784      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
785      * @param doctype The value of doctype as lessThan.\r
786      */\r
787     public void setDoctype_LessThan(String doctype) {\r
788         regDoctype(CK_LT, fRES(doctype));\r
789     }\r
790 \r
791     /**\r
792      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
793      * @param doctype The value of doctype as greaterEqual.\r
794      */\r
795     public void setDoctype_GreaterEqual(String doctype) {\r
796         regDoctype(CK_GE, fRES(doctype));\r
797     }\r
798 \r
799     /**\r
800      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
801      * @param doctype The value of doctype as lessEqual.\r
802      */\r
803     public void setDoctype_LessEqual(String doctype) {\r
804         regDoctype(CK_LE, fRES(doctype));\r
805     }\r
806 \r
807     /**\r
808      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
809      * @param doctype The value of doctype as prefixSearch.\r
810      */\r
811     public void setDoctype_PrefixSearch(String doctype) {\r
812         regDoctype(CK_PS, fRES(doctype));\r
813     }\r
814 \r
815     /**\r
816      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
817      * @param doctype The value of doctype as likeSearch.\r
818      * @param likeSearchOption The option of like-search. (NotNull)\r
819      */\r
820     public void setDoctype_LikeSearch(String doctype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
821         registerLikeSearchQuery(CK_LS, fRES(doctype), getCValueDoctype(), "DocType", "Doctype", "doctype", likeSearchOption);\r
822     }\r
823 \r
824     /**\r
825      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
826      * @param doctypeList The collection of doctype as inScope.\r
827      */\r
828     public void setDoctype_InScope(Collection<String> doctypeList) {\r
829         regDoctype(CK_INS, cTL(doctypeList));\r
830     }\r
831 \r
832     /**\r
833      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
834      * @param doctype The collection of doctype as inScope.\r
835      * @param inScopeOption The option of in-scope. (NotNull)\r
836      */\r
837     public void setDoctype_InScope(String doctype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
838         registerInScopeQuery(CK_INS, fRES(doctype), getCValueDoctype(), "DocType", "Doctype", "doctype", inScopeOption);\r
839     }\r
840 \r
841     /**\r
842      * IsNull(is null). And OnceRegistered.\r
843      */\r
844     public void setDoctype_IsNull() { regDoctype(CK_ISN, DUMMY_OBJECT); }\r
845 \r
846     /**\r
847      * IsNotNull(is not null). And OnceRegistered.\r
848      */\r
849     public void setDoctype_IsNotNull() { regDoctype(CK_ISNN, DUMMY_OBJECT); }\r
850 \r
851     protected void regDoctype(ConditionKey key, Object value) {\r
852         registerQuery(key, value, getCValueDoctype(), "DocType", "Doctype", "doctype");\r
853     }\r
854     protected void registerInlineDoctype(ConditionKey key, Object value) {\r
855         registerInlineQuery(key, value, getCValueDoctype(), "DocType", "Doctype", "doctype");\r
856     }\r
857     abstract protected ConditionValue getCValueDoctype();\r
858 \r
859     /**\r
860      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
861      * @param author The value of author as equal.\r
862      */\r
863     public void setAuthor_Equal(String author) {\r
864         regAuthor(CK_EQ, fRES(author));\r
865     }\r
866 \r
867     /**\r
868      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
869      * @param author The value of author as notEqual.\r
870      */\r
871     public void setAuthor_NotEqual(String author) {\r
872         regAuthor(CK_NE, fRES(author));\r
873     }\r
874 \r
875     /**\r
876      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
877      * @param author The value of author as greaterThan.\r
878      */\r
879     public void setAuthor_GreaterThan(String author) {\r
880         regAuthor(CK_GT, fRES(author));\r
881     }\r
882 \r
883     /**\r
884      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
885      * @param author The value of author as lessThan.\r
886      */\r
887     public void setAuthor_LessThan(String author) {\r
888         regAuthor(CK_LT, fRES(author));\r
889     }\r
890 \r
891     /**\r
892      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
893      * @param author The value of author as greaterEqual.\r
894      */\r
895     public void setAuthor_GreaterEqual(String author) {\r
896         regAuthor(CK_GE, fRES(author));\r
897     }\r
898 \r
899     /**\r
900      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
901      * @param author The value of author as lessEqual.\r
902      */\r
903     public void setAuthor_LessEqual(String author) {\r
904         regAuthor(CK_LE, fRES(author));\r
905     }\r
906 \r
907     /**\r
908      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
909      * @param author The value of author as prefixSearch.\r
910      */\r
911     public void setAuthor_PrefixSearch(String author) {\r
912         regAuthor(CK_PS, fRES(author));\r
913     }\r
914 \r
915     /**\r
916      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
917      * @param author The value of author as likeSearch.\r
918      * @param likeSearchOption The option of like-search. (NotNull)\r
919      */\r
920     public void setAuthor_LikeSearch(String author, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
921         registerLikeSearchQuery(CK_LS, fRES(author), getCValueAuthor(), "Author", "Author", "author", likeSearchOption);\r
922     }\r
923 \r
924     /**\r
925      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
926      * @param authorList The collection of author as inScope.\r
927      */\r
928     public void setAuthor_InScope(Collection<String> authorList) {\r
929         regAuthor(CK_INS, cTL(authorList));\r
930     }\r
931 \r
932     /**\r
933      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
934      * @param author The collection of author as inScope.\r
935      * @param inScopeOption The option of in-scope. (NotNull)\r
936      */\r
937     public void setAuthor_InScope(String author, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
938         registerInScopeQuery(CK_INS, fRES(author), getCValueAuthor(), "Author", "Author", "author", inScopeOption);\r
939     }\r
940 \r
941     /**\r
942      * IsNull(is null). And OnceRegistered.\r
943      */\r
944     public void setAuthor_IsNull() { regAuthor(CK_ISN, DUMMY_OBJECT); }\r
945 \r
946     /**\r
947      * IsNotNull(is not null). And OnceRegistered.\r
948      */\r
949     public void setAuthor_IsNotNull() { regAuthor(CK_ISNN, DUMMY_OBJECT); }\r
950 \r
951     protected void regAuthor(ConditionKey key, Object value) {\r
952         registerQuery(key, value, getCValueAuthor(), "Author", "Author", "author");\r
953     }\r
954     protected void registerInlineAuthor(ConditionKey key, Object value) {\r
955         registerInlineQuery(key, value, getCValueAuthor(), "Author", "Author", "author");\r
956     }\r
957     abstract protected ConditionValue getCValueAuthor();\r
958 \r
959     /**\r
960      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
961      * @param version The value of version as equal.\r
962      */\r
963     public void setVersion_Equal(String version) {\r
964         regVersion(CK_EQ, fRES(version));\r
965     }\r
966 \r
967     /**\r
968      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
969      * @param version The value of version as notEqual.\r
970      */\r
971     public void setVersion_NotEqual(String version) {\r
972         regVersion(CK_NE, fRES(version));\r
973     }\r
974 \r
975     /**\r
976      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
977      * @param version The value of version as greaterThan.\r
978      */\r
979     public void setVersion_GreaterThan(String version) {\r
980         regVersion(CK_GT, fRES(version));\r
981     }\r
982 \r
983     /**\r
984      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
985      * @param version The value of version as lessThan.\r
986      */\r
987     public void setVersion_LessThan(String version) {\r
988         regVersion(CK_LT, fRES(version));\r
989     }\r
990 \r
991     /**\r
992      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
993      * @param version The value of version as greaterEqual.\r
994      */\r
995     public void setVersion_GreaterEqual(String version) {\r
996         regVersion(CK_GE, fRES(version));\r
997     }\r
998 \r
999     /**\r
1000      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1001      * @param version The value of version as lessEqual.\r
1002      */\r
1003     public void setVersion_LessEqual(String version) {\r
1004         regVersion(CK_LE, fRES(version));\r
1005     }\r
1006 \r
1007     /**\r
1008      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1009      * @param version The value of version as prefixSearch.\r
1010      */\r
1011     public void setVersion_PrefixSearch(String version) {\r
1012         regVersion(CK_PS, fRES(version));\r
1013     }\r
1014 \r
1015     /**\r
1016      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1017      * @param version The value of version as likeSearch.\r
1018      * @param likeSearchOption The option of like-search. (NotNull)\r
1019      */\r
1020     public void setVersion_LikeSearch(String version, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1021         registerLikeSearchQuery(CK_LS, fRES(version), getCValueVersion(), "Version", "Version", "version", likeSearchOption);\r
1022     }\r
1023 \r
1024     /**\r
1025      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1026      * @param versionList The collection of version as inScope.\r
1027      */\r
1028     public void setVersion_InScope(Collection<String> versionList) {\r
1029         regVersion(CK_INS, cTL(versionList));\r
1030     }\r
1031 \r
1032     /**\r
1033      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1034      * @param version The collection of version as inScope.\r
1035      * @param inScopeOption The option of in-scope. (NotNull)\r
1036      */\r
1037     public void setVersion_InScope(String version, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1038         registerInScopeQuery(CK_INS, fRES(version), getCValueVersion(), "Version", "Version", "version", inScopeOption);\r
1039     }\r
1040 \r
1041     /**\r
1042      * IsNull(is null). And OnceRegistered.\r
1043      */\r
1044     public void setVersion_IsNull() { regVersion(CK_ISN, DUMMY_OBJECT); }\r
1045 \r
1046     /**\r
1047      * IsNotNull(is not null). And OnceRegistered.\r
1048      */\r
1049     public void setVersion_IsNotNull() { regVersion(CK_ISNN, DUMMY_OBJECT); }\r
1050 \r
1051     protected void regVersion(ConditionKey key, Object value) {\r
1052         registerQuery(key, value, getCValueVersion(), "Version", "Version", "version");\r
1053     }\r
1054     protected void registerInlineVersion(ConditionKey key, Object value) {\r
1055         registerInlineQuery(key, value, getCValueVersion(), "Version", "Version", "version");\r
1056     }\r
1057     abstract protected ConditionValue getCValueVersion();\r
1058     \r
1059     /**\r
1060      * Equal(=). And NullIgnored, OnceRegistered. {INTEGER}\r
1061      * @param isactive The value of isactive as equal.\r
1062      */\r
1063     public void setIsactive_Equal(java.lang.Integer isactive) {\r
1064         regIsactive(CK_EQ, isactive);\r
1065     }\r
1066 \r
1067     /**\r
1068      * NotEqual(!=). And NullIgnored, OnceRegistered.\r
1069      * @param isactive The value of isactive as notEqual.\r
1070      */\r
1071     public void setIsactive_NotEqual(java.lang.Integer isactive) {\r
1072         regIsactive(CK_NE, isactive);\r
1073     }\r
1074 \r
1075     /**\r
1076      * GreaterThan(&gt;). And NullIgnored, OnceRegistered.\r
1077      * @param isactive The value of isactive as greaterThan.\r
1078      */\r
1079     public void setIsactive_GreaterThan(java.lang.Integer isactive) {\r
1080         regIsactive(CK_GT, isactive);\r
1081     }\r
1082 \r
1083     /**\r
1084      * LessThan(&lt;). And NullIgnored, OnceRegistered.\r
1085      * @param isactive The value of isactive as lessThan.\r
1086      */\r
1087     public void setIsactive_LessThan(java.lang.Integer isactive) {\r
1088         regIsactive(CK_LT, isactive);\r
1089     }\r
1090 \r
1091     /**\r
1092      * GreaterEqual(&gt;=). And NullIgnored, OnceRegistered.\r
1093      * @param isactive The value of isactive as greaterEqual.\r
1094      */\r
1095     public void setIsactive_GreaterEqual(java.lang.Integer isactive) {\r
1096         regIsactive(CK_GE, isactive);\r
1097     }\r
1098 \r
1099     /**\r
1100      * LessEqual(&lt;=). And NullIgnored, OnceRegistered.\r
1101      * @param isactive The value of isactive as lessEqual.\r
1102      */\r
1103     public void setIsactive_LessEqual(java.lang.Integer isactive) {\r
1104         regIsactive(CK_LE, isactive);\r
1105     }\r
1106 \r
1107     /**\r
1108      * InScope(in (1, 2)). And NullIgnored, NullElementIgnored, SeveralRegistered.\r
1109      * @param isactiveList The collection of isactive as inScope.\r
1110      */\r
1111     public void setIsactive_InScope(Collection<java.lang.Integer> isactiveList) {\r
1112         regIsactive(CK_INS, cTL(isactiveList));\r
1113     }\r
1114 \r
1115     /**\r
1116      * IsNull(is null). And OnceRegistered.\r
1117      */\r
1118     public void setIsactive_IsNull() { regIsactive(CK_ISN, DUMMY_OBJECT); }\r
1119 \r
1120     /**\r
1121      * IsNotNull(is not null). And OnceRegistered.\r
1122      */\r
1123     public void setIsactive_IsNotNull() { regIsactive(CK_ISNN, DUMMY_OBJECT); }\r
1124 \r
1125     protected void regIsactive(ConditionKey key, Object value) {\r
1126         registerQuery(key, value, getCValueIsactive(), "IsActive", "Isactive", "isactive");\r
1127     }\r
1128     protected void registerInlineIsactive(ConditionKey key, Object value) {\r
1129         registerInlineQuery(key, value, getCValueIsactive(), "IsActive", "Isactive", "isactive");\r
1130     }\r
1131     abstract protected ConditionValue getCValueIsactive();\r
1132     \r
1133     /**\r
1134      * Equal(=). And NullIgnored, OnceRegistered. {INTEGER}\r
1135      * @param sequence The value of sequence as equal.\r
1136      */\r
1137     public void setSequence_Equal(java.lang.Integer sequence) {\r
1138         regSequence(CK_EQ, sequence);\r
1139     }\r
1140 \r
1141     /**\r
1142      * NotEqual(!=). And NullIgnored, OnceRegistered.\r
1143      * @param sequence The value of sequence as notEqual.\r
1144      */\r
1145     public void setSequence_NotEqual(java.lang.Integer sequence) {\r
1146         regSequence(CK_NE, sequence);\r
1147     }\r
1148 \r
1149     /**\r
1150      * GreaterThan(&gt;). And NullIgnored, OnceRegistered.\r
1151      * @param sequence The value of sequence as greaterThan.\r
1152      */\r
1153     public void setSequence_GreaterThan(java.lang.Integer sequence) {\r
1154         regSequence(CK_GT, sequence);\r
1155     }\r
1156 \r
1157     /**\r
1158      * LessThan(&lt;). And NullIgnored, OnceRegistered.\r
1159      * @param sequence The value of sequence as lessThan.\r
1160      */\r
1161     public void setSequence_LessThan(java.lang.Integer sequence) {\r
1162         regSequence(CK_LT, sequence);\r
1163     }\r
1164 \r
1165     /**\r
1166      * GreaterEqual(&gt;=). And NullIgnored, OnceRegistered.\r
1167      * @param sequence The value of sequence as greaterEqual.\r
1168      */\r
1169     public void setSequence_GreaterEqual(java.lang.Integer sequence) {\r
1170         regSequence(CK_GE, sequence);\r
1171     }\r
1172 \r
1173     /**\r
1174      * LessEqual(&lt;=). And NullIgnored, OnceRegistered.\r
1175      * @param sequence The value of sequence as lessEqual.\r
1176      */\r
1177     public void setSequence_LessEqual(java.lang.Integer sequence) {\r
1178         regSequence(CK_LE, sequence);\r
1179     }\r
1180 \r
1181     /**\r
1182      * InScope(in (1, 2)). And NullIgnored, NullElementIgnored, SeveralRegistered.\r
1183      * @param sequenceList The collection of sequence as inScope.\r
1184      */\r
1185     public void setSequence_InScope(Collection<java.lang.Integer> sequenceList) {\r
1186         regSequence(CK_INS, cTL(sequenceList));\r
1187     }\r
1188 \r
1189     /**\r
1190      * IsNull(is null). And OnceRegistered.\r
1191      */\r
1192     public void setSequence_IsNull() { regSequence(CK_ISN, DUMMY_OBJECT); }\r
1193 \r
1194     /**\r
1195      * IsNotNull(is not null). And OnceRegistered.\r
1196      */\r
1197     public void setSequence_IsNotNull() { regSequence(CK_ISNN, DUMMY_OBJECT); }\r
1198 \r
1199     protected void regSequence(ConditionKey key, Object value) {\r
1200         registerQuery(key, value, getCValueSequence(), "Sequence", "Sequence", "sequence");\r
1201     }\r
1202     protected void registerInlineSequence(ConditionKey key, Object value) {\r
1203         registerInlineQuery(key, value, getCValueSequence(), "Sequence", "Sequence", "sequence");\r
1204     }\r
1205     abstract protected ConditionValue getCValueSequence();\r
1206     \r
1207     /**\r
1208      * Equal(=). And NullIgnored, OnceRegistered. {DATETIME}\r
1209      * @param docdate The value of docdate as equal.\r
1210      */\r
1211     public void setDocdate_Equal(java.sql.Timestamp docdate) {\r
1212         regDocdate(CK_EQ, docdate);\r
1213     }\r
1214 \r
1215     /**\r
1216      * GreaterThan(&gt;). And NullIgnored, OnceRegistered.\r
1217      * @param docdate The value of docdate as greaterThan.\r
1218      */\r
1219     public void setDocdate_GreaterThan(java.sql.Timestamp docdate) {\r
1220         regDocdate(CK_GT, docdate);\r
1221     }\r
1222 \r
1223     /**\r
1224      * LessThan(&gt;). And NullIgnored, OnceRegistered.\r
1225      * @param docdate The value of docdate as lessThan.\r
1226      */\r
1227     public void setDocdate_LessThan(java.sql.Timestamp docdate) {\r
1228         regDocdate(CK_LT, docdate);\r
1229     }\r
1230 \r
1231     /**\r
1232      * GreaterEqual(&gt;). And NullIgnored, OnceRegistered.\r
1233      * @param docdate The value of docdate as greaterEqual.\r
1234      */\r
1235     public void setDocdate_GreaterEqual(java.sql.Timestamp docdate) {\r
1236         regDocdate(CK_GE, docdate);\r
1237     }\r
1238 \r
1239     /**\r
1240      * LessEqual(&gt;). And NullIgnored, OnceRegistered.\r
1241      * @param docdate The value of docdate as lessEqual.\r
1242      */\r
1243     public void setDocdate_LessEqual(java.sql.Timestamp docdate) {\r
1244         regDocdate(CK_LE, docdate);\r
1245     }\r
1246 \r
1247     /**\r
1248      * FromTo($fromDate &lt;= COLUMN_NAME &lt;= $toDate). And NullIgnored, OnceRegistered. {DATETIME}\r
1249      * @param fromDate The from-date of docdate. (Nullable)\r
1250      * @param toDate The to-date of docdate. (Nullable)\r
1251      * @param fromToOption The option of from-to. (NotNull)\r
1252      */\r
1253     public void setDocdate_FromTo(java.util.Date fromDate, java.util.Date toDate, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.FromToOption fromToOption) {\r
1254         registerFromToQuery((fromDate != null ? new java.sql.Timestamp(fromDate.getTime()) : null), (toDate != null ? new java.sql.Timestamp(toDate.getTime()) : null), getCValueDocdate(), "DocDate", "Docdate", "docdate", fromToOption);\r
1255     }\r
1256 \r
1257     /**\r
1258      * FromTo($fromDate &lt;= COLUMN_NAME &lt; $toDate + 1). And NullIgnored, OnceRegistered. {DATETIME}\r
1259      * @param fromDate The from-date of docdate. (Nullable)\r
1260      * @param toDate The to-date of docdate. (Nullable)\r
1261      */\r
1262     public void setDocdate_DateFromTo(java.util.Date fromDate, java.util.Date toDate) {\r
1263         setDocdate_FromTo(fromDate, toDate, new jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.DateFromToOption());\r
1264     }\r
1265 \r
1266     /**\r
1267      * IsNull(is null). And OnceRegistered.\r
1268      */\r
1269     public void setDocdate_IsNull() { regDocdate(CK_ISN, DUMMY_OBJECT); }\r
1270 \r
1271     /**\r
1272      * IsNotNull(is not null). And OnceRegistered.\r
1273      */\r
1274     public void setDocdate_IsNotNull() { regDocdate(CK_ISNN, DUMMY_OBJECT); }\r
1275 \r
1276     protected void regDocdate(ConditionKey key, Object value) {\r
1277         registerQuery(key, value, getCValueDocdate(), "DocDate", "Docdate", "docdate");\r
1278     }\r
1279     protected void registerInlineDocdate(ConditionKey key, Object value) {\r
1280         registerInlineQuery(key, value, getCValueDocdate(), "DocDate", "Docdate", "docdate");\r
1281     }\r
1282     abstract protected ConditionValue getCValueDocdate();\r
1283 \r
1284     // Very Internal (for Suppressing Warn about 'Not Use Import')\r
1285     protected String getConditionBeanClassNameInternally() { return TDocumentCB.class.getName(); }\r
1286     protected String getConditionQueryClassNameInternally() { return TDocumentCQ.class.getName(); }\r
1287 }\r