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 / AbstractBsTOperationparamsCQ.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_operationparams.\r
14  * @author DBFlute(AutoGenerator)\r
15  */
16 @SuppressWarnings("unchecked")\r
17 public abstract class AbstractBsTOperationparamsCQ extends AbstractConditionQuery {\r
18 \r
19     // ===================================================================================\r
20     //                                                                         Constructor\r
21     //                                                                         ===========\r
22     public AbstractBsTOperationparamsCQ(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_operationparams";\r
31     }\r
32     \r
33     public String getTableSqlName() {\r
34         return "t_operationparams";\r
35     }\r
36 \r
37     // ===================================================================================\r
38     //                                                                               Query\r
39     //                                                                               =====\r
40     \r
41     /**\r
42      * Equal(=). And NullIgnored, OnceRegistered. {UQ : INTEGER}\r
43      * @param operationid The value of operationid as equal.\r
44      */\r
45     public void setOperationid_Equal(java.lang.Integer operationid) {\r
46         regOperationid(CK_EQ, operationid);\r
47     }\r
48 \r
49     /**\r
50      * NotEqual(!=). And NullIgnored, OnceRegistered.\r
51      * @param operationid The value of operationid as notEqual.\r
52      */\r
53     public void setOperationid_NotEqual(java.lang.Integer operationid) {\r
54         regOperationid(CK_NE, operationid);\r
55     }\r
56 \r
57     /**\r
58      * GreaterThan(>). And NullIgnored, OnceRegistered.\r
59      * @param operationid The value of operationid as greaterThan.\r
60      */\r
61     public void setOperationid_GreaterThan(java.lang.Integer operationid) {\r
62         regOperationid(CK_GT, operationid);\r
63     }\r
64 \r
65     /**\r
66      * LessThan(<). And NullIgnored, OnceRegistered.\r
67      * @param operationid The value of operationid as lessThan.\r
68      */\r
69     public void setOperationid_LessThan(java.lang.Integer operationid) {\r
70         regOperationid(CK_LT, operationid);\r
71     }\r
72 \r
73     /**\r
74      * GreaterEqual(>=). And NullIgnored, OnceRegistered.\r
75      * @param operationid The value of operationid as greaterEqual.\r
76      */\r
77     public void setOperationid_GreaterEqual(java.lang.Integer operationid) {\r
78         regOperationid(CK_GE, operationid);\r
79     }\r
80 \r
81     /**\r
82      * LessEqual(<=). And NullIgnored, OnceRegistered.\r
83      * @param operationid The value of operationid as lessEqual.\r
84      */\r
85     public void setOperationid_LessEqual(java.lang.Integer operationid) {\r
86         regOperationid(CK_LE, operationid);\r
87     }\r
88 \r
89     /**\r
90      * InScope(in (1, 2)). And NullIgnored, NullElementIgnored, SeveralRegistered.\r
91      * @param operationidList The collection of operationid as inScope.\r
92      */\r
93     public void setOperationid_InScope(Collection<java.lang.Integer> operationidList) {\r
94         regOperationid(CK_INS, cTL(operationidList));\r
95     }\r
96 \r
97     /**\r
98      * IsNull(is null). And OnceRegistered.\r
99      */\r
100     public void setOperationid_IsNull() { regOperationid(CK_ISN, DUMMY_OBJECT); }\r
101 \r
102     /**\r
103      * IsNotNull(is not null). And OnceRegistered.\r
104      */\r
105     public void setOperationid_IsNotNull() { regOperationid(CK_ISNN, DUMMY_OBJECT); }\r
106 \r
107     protected void regOperationid(ConditionKey key, Object value) {\r
108         registerQuery(key, value, getCValueOperationid(), "OperationID", "Operationid", "operationid");\r
109     }\r
110     protected void registerInlineOperationid(ConditionKey key, Object value) {\r
111         registerInlineQuery(key, value, getCValueOperationid(), "OperationID", "Operationid", "operationid");\r
112     }\r
113     abstract protected ConditionValue getCValueOperationid();\r
114 \r
115     /**\r
116      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {UQ : VARCHAR(255)}\r
117      * @param name The value of name as equal.\r
118      */\r
119     public void setName_Equal(String name) {\r
120         regName(CK_EQ, fRES(name));\r
121     }\r
122 \r
123     /**\r
124      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
125      * @param name The value of name as notEqual.\r
126      */\r
127     public void setName_NotEqual(String name) {\r
128         regName(CK_NE, fRES(name));\r
129     }\r
130 \r
131     /**\r
132      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
133      * @param name The value of name as greaterThan.\r
134      */\r
135     public void setName_GreaterThan(String name) {\r
136         regName(CK_GT, fRES(name));\r
137     }\r
138 \r
139     /**\r
140      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
141      * @param name The value of name as lessThan.\r
142      */\r
143     public void setName_LessThan(String name) {\r
144         regName(CK_LT, fRES(name));\r
145     }\r
146 \r
147     /**\r
148      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
149      * @param name The value of name as greaterEqual.\r
150      */\r
151     public void setName_GreaterEqual(String name) {\r
152         regName(CK_GE, fRES(name));\r
153     }\r
154 \r
155     /**\r
156      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
157      * @param name The value of name as lessEqual.\r
158      */\r
159     public void setName_LessEqual(String name) {\r
160         regName(CK_LE, fRES(name));\r
161     }\r
162 \r
163     /**\r
164      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
165      * @param name The value of name as prefixSearch.\r
166      */\r
167     public void setName_PrefixSearch(String name) {\r
168         regName(CK_PS, fRES(name));\r
169     }\r
170 \r
171     /**\r
172      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
173      * @param name The value of name as likeSearch.\r
174      * @param likeSearchOption The option of like-search. (NotNull)\r
175      */\r
176     public void setName_LikeSearch(String name, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
177         registerLikeSearchQuery(CK_LS, fRES(name), getCValueName(), "Name", "Name", "name", likeSearchOption);\r
178     }\r
179 \r
180     /**\r
181      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
182      * @param nameList The collection of name as inScope.\r
183      */\r
184     public void setName_InScope(Collection<String> nameList) {\r
185         regName(CK_INS, cTL(nameList));\r
186     }\r
187 \r
188     /**\r
189      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
190      * @param name The collection of name as inScope.\r
191      * @param inScopeOption The option of in-scope. (NotNull)\r
192      */\r
193     public void setName_InScope(String name, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
194         registerInScopeQuery(CK_INS, fRES(name), getCValueName(), "Name", "Name", "name", inScopeOption);\r
195     }\r
196 \r
197     /**\r
198      * IsNull(is null). And OnceRegistered.\r
199      */\r
200     public void setName_IsNull() { regName(CK_ISN, DUMMY_OBJECT); }\r
201 \r
202     /**\r
203      * IsNotNull(is not null). And OnceRegistered.\r
204      */\r
205     public void setName_IsNotNull() { regName(CK_ISNN, DUMMY_OBJECT); }\r
206 \r
207     protected void regName(ConditionKey key, Object value) {\r
208         registerQuery(key, value, getCValueName(), "Name", "Name", "name");\r
209     }\r
210     protected void registerInlineName(ConditionKey key, Object value) {\r
211         registerInlineQuery(key, value, getCValueName(), "Name", "Name", "name");\r
212     }\r
213     abstract protected ConditionValue getCValueName();\r
214 \r
215     /**\r
216      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
217      * @param type The value of type as equal.\r
218      */\r
219     public void setType_Equal(String type) {\r
220         regType(CK_EQ, fRES(type));\r
221     }\r
222 \r
223     /**\r
224      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
225      * @param type The value of type as notEqual.\r
226      */\r
227     public void setType_NotEqual(String type) {\r
228         regType(CK_NE, fRES(type));\r
229     }\r
230 \r
231     /**\r
232      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
233      * @param type The value of type as greaterThan.\r
234      */\r
235     public void setType_GreaterThan(String type) {\r
236         regType(CK_GT, fRES(type));\r
237     }\r
238 \r
239     /**\r
240      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
241      * @param type The value of type as lessThan.\r
242      */\r
243     public void setType_LessThan(String type) {\r
244         regType(CK_LT, fRES(type));\r
245     }\r
246 \r
247     /**\r
248      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
249      * @param type The value of type as greaterEqual.\r
250      */\r
251     public void setType_GreaterEqual(String type) {\r
252         regType(CK_GE, fRES(type));\r
253     }\r
254 \r
255     /**\r
256      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
257      * @param type The value of type as lessEqual.\r
258      */\r
259     public void setType_LessEqual(String type) {\r
260         regType(CK_LE, fRES(type));\r
261     }\r
262 \r
263     /**\r
264      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
265      * @param type The value of type as prefixSearch.\r
266      */\r
267     public void setType_PrefixSearch(String type) {\r
268         regType(CK_PS, fRES(type));\r
269     }\r
270 \r
271     /**\r
272      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
273      * @param type The value of type as likeSearch.\r
274      * @param likeSearchOption The option of like-search. (NotNull)\r
275      */\r
276     public void setType_LikeSearch(String type, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
277         registerLikeSearchQuery(CK_LS, fRES(type), getCValueType(), "Type", "Type", "type", likeSearchOption);\r
278     }\r
279 \r
280     /**\r
281      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
282      * @param typeList The collection of type as inScope.\r
283      */\r
284     public void setType_InScope(Collection<String> typeList) {\r
285         regType(CK_INS, cTL(typeList));\r
286     }\r
287 \r
288     /**\r
289      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
290      * @param type The collection of type as inScope.\r
291      * @param inScopeOption The option of in-scope. (NotNull)\r
292      */\r
293     public void setType_InScope(String type, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
294         registerInScopeQuery(CK_INS, fRES(type), getCValueType(), "Type", "Type", "type", inScopeOption);\r
295     }\r
296 \r
297     /**\r
298      * IsNull(is null). And OnceRegistered.\r
299      */\r
300     public void setType_IsNull() { regType(CK_ISN, DUMMY_OBJECT); }\r
301 \r
302     /**\r
303      * IsNotNull(is not null). And OnceRegistered.\r
304      */\r
305     public void setType_IsNotNull() { regType(CK_ISNN, DUMMY_OBJECT); }\r
306 \r
307     protected void regType(ConditionKey key, Object value) {\r
308         registerQuery(key, value, getCValueType(), "Type", "Type", "type");\r
309     }\r
310     protected void registerInlineType(ConditionKey key, Object value) {\r
311         registerInlineQuery(key, value, getCValueType(), "Type", "Type", "type");\r
312     }\r
313     abstract protected ConditionValue getCValueType();\r
314 \r
315     /**\r
316      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
317      * @param notes The value of notes as equal.\r
318      */\r
319     public void setNotes_Equal(String notes) {\r
320         regNotes(CK_EQ, fRES(notes));\r
321     }\r
322 \r
323     /**\r
324      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
325      * @param notes The value of notes as notEqual.\r
326      */\r
327     public void setNotes_NotEqual(String notes) {\r
328         regNotes(CK_NE, fRES(notes));\r
329     }\r
330 \r
331     /**\r
332      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
333      * @param notes The value of notes as greaterThan.\r
334      */\r
335     public void setNotes_GreaterThan(String notes) {\r
336         regNotes(CK_GT, fRES(notes));\r
337     }\r
338 \r
339     /**\r
340      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
341      * @param notes The value of notes as lessThan.\r
342      */\r
343     public void setNotes_LessThan(String notes) {\r
344         regNotes(CK_LT, fRES(notes));\r
345     }\r
346 \r
347     /**\r
348      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
349      * @param notes The value of notes as greaterEqual.\r
350      */\r
351     public void setNotes_GreaterEqual(String notes) {\r
352         regNotes(CK_GE, fRES(notes));\r
353     }\r
354 \r
355     /**\r
356      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
357      * @param notes The value of notes as lessEqual.\r
358      */\r
359     public void setNotes_LessEqual(String notes) {\r
360         regNotes(CK_LE, fRES(notes));\r
361     }\r
362 \r
363     /**\r
364      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
365      * @param notes The value of notes as prefixSearch.\r
366      */\r
367     public void setNotes_PrefixSearch(String notes) {\r
368         regNotes(CK_PS, fRES(notes));\r
369     }\r
370 \r
371     /**\r
372      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
373      * @param notes The value of notes as likeSearch.\r
374      * @param likeSearchOption The option of like-search. (NotNull)\r
375      */\r
376     public void setNotes_LikeSearch(String notes, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
377         registerLikeSearchQuery(CK_LS, fRES(notes), getCValueNotes(), "Notes", "Notes", "notes", likeSearchOption);\r
378     }\r
379 \r
380     /**\r
381      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
382      * @param notesList The collection of notes as inScope.\r
383      */\r
384     public void setNotes_InScope(Collection<String> notesList) {\r
385         regNotes(CK_INS, cTL(notesList));\r
386     }\r
387 \r
388     /**\r
389      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
390      * @param notes The collection of notes as inScope.\r
391      * @param inScopeOption The option of in-scope. (NotNull)\r
392      */\r
393     public void setNotes_InScope(String notes, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
394         registerInScopeQuery(CK_INS, fRES(notes), getCValueNotes(), "Notes", "Notes", "notes", inScopeOption);\r
395     }\r
396 \r
397     /**\r
398      * IsNull(is null). And OnceRegistered.\r
399      */\r
400     public void setNotes_IsNull() { regNotes(CK_ISN, DUMMY_OBJECT); }\r
401 \r
402     /**\r
403      * IsNotNull(is not null). And OnceRegistered.\r
404      */\r
405     public void setNotes_IsNotNull() { regNotes(CK_ISNN, DUMMY_OBJECT); }\r
406 \r
407     protected void regNotes(ConditionKey key, Object value) {\r
408         registerQuery(key, value, getCValueNotes(), "Notes", "Notes", "notes");\r
409     }\r
410     protected void registerInlineNotes(ConditionKey key, Object value) {\r
411         registerInlineQuery(key, value, getCValueNotes(), "Notes", "Notes", "notes");\r
412     }\r
413     abstract protected ConditionValue getCValueNotes();\r
414     \r
415     /**\r
416      * Equal(=). And NullIgnored, OnceRegistered. {INTEGER}\r
417      * @param pos The value of pos as equal.\r
418      */\r
419     public void setPos_Equal(java.lang.Integer pos) {\r
420         regPos(CK_EQ, pos);\r
421     }\r
422 \r
423     /**\r
424      * NotEqual(!=). And NullIgnored, OnceRegistered.\r
425      * @param pos The value of pos as notEqual.\r
426      */\r
427     public void setPos_NotEqual(java.lang.Integer pos) {\r
428         regPos(CK_NE, pos);\r
429     }\r
430 \r
431     /**\r
432      * GreaterThan(&gt;). And NullIgnored, OnceRegistered.\r
433      * @param pos The value of pos as greaterThan.\r
434      */\r
435     public void setPos_GreaterThan(java.lang.Integer pos) {\r
436         regPos(CK_GT, pos);\r
437     }\r
438 \r
439     /**\r
440      * LessThan(&lt;). And NullIgnored, OnceRegistered.\r
441      * @param pos The value of pos as lessThan.\r
442      */\r
443     public void setPos_LessThan(java.lang.Integer pos) {\r
444         regPos(CK_LT, pos);\r
445     }\r
446 \r
447     /**\r
448      * GreaterEqual(&gt;=). And NullIgnored, OnceRegistered.\r
449      * @param pos The value of pos as greaterEqual.\r
450      */\r
451     public void setPos_GreaterEqual(java.lang.Integer pos) {\r
452         regPos(CK_GE, pos);\r
453     }\r
454 \r
455     /**\r
456      * LessEqual(&lt;=). And NullIgnored, OnceRegistered.\r
457      * @param pos The value of pos as lessEqual.\r
458      */\r
459     public void setPos_LessEqual(java.lang.Integer pos) {\r
460         regPos(CK_LE, pos);\r
461     }\r
462 \r
463     /**\r
464      * InScope(in (1, 2)). And NullIgnored, NullElementIgnored, SeveralRegistered.\r
465      * @param posList The collection of pos as inScope.\r
466      */\r
467     public void setPos_InScope(Collection<java.lang.Integer> posList) {\r
468         regPos(CK_INS, cTL(posList));\r
469     }\r
470 \r
471     /**\r
472      * IsNull(is null). And OnceRegistered.\r
473      */\r
474     public void setPos_IsNull() { regPos(CK_ISN, DUMMY_OBJECT); }\r
475 \r
476     /**\r
477      * IsNotNull(is not null). And OnceRegistered.\r
478      */\r
479     public void setPos_IsNotNull() { regPos(CK_ISNN, DUMMY_OBJECT); }\r
480 \r
481     protected void regPos(ConditionKey key, Object value) {\r
482         registerQuery(key, value, getCValuePos(), "Pos", "Pos", "pos");\r
483     }\r
484     protected void registerInlinePos(ConditionKey key, Object value) {\r
485         registerInlineQuery(key, value, getCValuePos(), "Pos", "Pos", "pos");\r
486     }\r
487     abstract protected ConditionValue getCValuePos();\r
488 \r
489     /**\r
490      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
491      * @param style The value of style as equal.\r
492      */\r
493     public void setStyle_Equal(String style) {\r
494         regStyle(CK_EQ, fRES(style));\r
495     }\r
496 \r
497     /**\r
498      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
499      * @param style The value of style as notEqual.\r
500      */\r
501     public void setStyle_NotEqual(String style) {\r
502         regStyle(CK_NE, fRES(style));\r
503     }\r
504 \r
505     /**\r
506      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
507      * @param style The value of style as greaterThan.\r
508      */\r
509     public void setStyle_GreaterThan(String style) {\r
510         regStyle(CK_GT, fRES(style));\r
511     }\r
512 \r
513     /**\r
514      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
515      * @param style The value of style as lessThan.\r
516      */\r
517     public void setStyle_LessThan(String style) {\r
518         regStyle(CK_LT, fRES(style));\r
519     }\r
520 \r
521     /**\r
522      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
523      * @param style The value of style as greaterEqual.\r
524      */\r
525     public void setStyle_GreaterEqual(String style) {\r
526         regStyle(CK_GE, fRES(style));\r
527     }\r
528 \r
529     /**\r
530      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
531      * @param style The value of style as lessEqual.\r
532      */\r
533     public void setStyle_LessEqual(String style) {\r
534         regStyle(CK_LE, fRES(style));\r
535     }\r
536 \r
537     /**\r
538      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
539      * @param style The value of style as prefixSearch.\r
540      */\r
541     public void setStyle_PrefixSearch(String style) {\r
542         regStyle(CK_PS, fRES(style));\r
543     }\r
544 \r
545     /**\r
546      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
547      * @param style The value of style as likeSearch.\r
548      * @param likeSearchOption The option of like-search. (NotNull)\r
549      */\r
550     public void setStyle_LikeSearch(String style, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
551         registerLikeSearchQuery(CK_LS, fRES(style), getCValueStyle(), "Style", "Style", "style", likeSearchOption);\r
552     }\r
553 \r
554     /**\r
555      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
556      * @param styleList The collection of style as inScope.\r
557      */\r
558     public void setStyle_InScope(Collection<String> styleList) {\r
559         regStyle(CK_INS, cTL(styleList));\r
560     }\r
561 \r
562     /**\r
563      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
564      * @param style The collection of style as inScope.\r
565      * @param inScopeOption The option of in-scope. (NotNull)\r
566      */\r
567     public void setStyle_InScope(String style, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
568         registerInScopeQuery(CK_INS, fRES(style), getCValueStyle(), "Style", "Style", "style", inScopeOption);\r
569     }\r
570 \r
571     /**\r
572      * IsNull(is null). And OnceRegistered.\r
573      */\r
574     public void setStyle_IsNull() { regStyle(CK_ISN, DUMMY_OBJECT); }\r
575 \r
576     /**\r
577      * IsNotNull(is not null). And OnceRegistered.\r
578      */\r
579     public void setStyle_IsNotNull() { regStyle(CK_ISNN, DUMMY_OBJECT); }\r
580 \r
581     protected void regStyle(ConditionKey key, Object value) {\r
582         registerQuery(key, value, getCValueStyle(), "Style", "Style", "style");\r
583     }\r
584     protected void registerInlineStyle(ConditionKey key, Object value) {\r
585         registerInlineQuery(key, value, getCValueStyle(), "Style", "Style", "style");\r
586     }\r
587     abstract protected ConditionValue getCValueStyle();\r
588 \r
589     /**\r
590      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(12)}\r
591      * @param kind The value of kind as equal.\r
592      */\r
593     public void setKind_Equal(String kind) {\r
594         regKind(CK_EQ, fRES(kind));\r
595     }\r
596 \r
597     /**\r
598      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
599      * @param kind The value of kind as notEqual.\r
600      */\r
601     public void setKind_NotEqual(String kind) {\r
602         regKind(CK_NE, fRES(kind));\r
603     }\r
604 \r
605     /**\r
606      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
607      * @param kind The value of kind as greaterThan.\r
608      */\r
609     public void setKind_GreaterThan(String kind) {\r
610         regKind(CK_GT, fRES(kind));\r
611     }\r
612 \r
613     /**\r
614      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
615      * @param kind The value of kind as lessThan.\r
616      */\r
617     public void setKind_LessThan(String kind) {\r
618         regKind(CK_LT, fRES(kind));\r
619     }\r
620 \r
621     /**\r
622      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
623      * @param kind The value of kind as greaterEqual.\r
624      */\r
625     public void setKind_GreaterEqual(String kind) {\r
626         regKind(CK_GE, fRES(kind));\r
627     }\r
628 \r
629     /**\r
630      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
631      * @param kind The value of kind as lessEqual.\r
632      */\r
633     public void setKind_LessEqual(String kind) {\r
634         regKind(CK_LE, fRES(kind));\r
635     }\r
636 \r
637     /**\r
638      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
639      * @param kind The value of kind as prefixSearch.\r
640      */\r
641     public void setKind_PrefixSearch(String kind) {\r
642         regKind(CK_PS, fRES(kind));\r
643     }\r
644 \r
645     /**\r
646      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
647      * @param kind The value of kind as likeSearch.\r
648      * @param likeSearchOption The option of like-search. (NotNull)\r
649      */\r
650     public void setKind_LikeSearch(String kind, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
651         registerLikeSearchQuery(CK_LS, fRES(kind), getCValueKind(), "Kind", "Kind", "kind", likeSearchOption);\r
652     }\r
653 \r
654     /**\r
655      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
656      * @param kindList The collection of kind as inScope.\r
657      */\r
658     public void setKind_InScope(Collection<String> kindList) {\r
659         regKind(CK_INS, cTL(kindList));\r
660     }\r
661 \r
662     /**\r
663      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
664      * @param kind The collection of kind as inScope.\r
665      * @param inScopeOption The option of in-scope. (NotNull)\r
666      */\r
667     public void setKind_InScope(String kind, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
668         registerInScopeQuery(CK_INS, fRES(kind), getCValueKind(), "Kind", "Kind", "kind", inScopeOption);\r
669     }\r
670 \r
671     /**\r
672      * IsNull(is null). And OnceRegistered.\r
673      */\r
674     public void setKind_IsNull() { regKind(CK_ISN, DUMMY_OBJECT); }\r
675 \r
676     /**\r
677      * IsNotNull(is not null). And OnceRegistered.\r
678      */\r
679     public void setKind_IsNotNull() { regKind(CK_ISNN, DUMMY_OBJECT); }\r
680 \r
681     protected void regKind(ConditionKey key, Object value) {\r
682         registerQuery(key, value, getCValueKind(), "Kind", "Kind", "kind");\r
683     }\r
684     protected void registerInlineKind(ConditionKey key, Object value) {\r
685         registerInlineQuery(key, value, getCValueKind(), "Kind", "Kind", "kind");\r
686     }\r
687     abstract protected ConditionValue getCValueKind();\r
688 \r
689     /**\r
690      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
691      * @param classifier The value of classifier as equal.\r
692      */\r
693     public void setClassifier_Equal(String classifier) {\r
694         regClassifier(CK_EQ, fRES(classifier));\r
695     }\r
696 \r
697     /**\r
698      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
699      * @param classifier The value of classifier as notEqual.\r
700      */\r
701     public void setClassifier_NotEqual(String classifier) {\r
702         regClassifier(CK_NE, fRES(classifier));\r
703     }\r
704 \r
705     /**\r
706      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
707      * @param classifier The value of classifier as greaterThan.\r
708      */\r
709     public void setClassifier_GreaterThan(String classifier) {\r
710         regClassifier(CK_GT, fRES(classifier));\r
711     }\r
712 \r
713     /**\r
714      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
715      * @param classifier The value of classifier as lessThan.\r
716      */\r
717     public void setClassifier_LessThan(String classifier) {\r
718         regClassifier(CK_LT, fRES(classifier));\r
719     }\r
720 \r
721     /**\r
722      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
723      * @param classifier The value of classifier as greaterEqual.\r
724      */\r
725     public void setClassifier_GreaterEqual(String classifier) {\r
726         regClassifier(CK_GE, fRES(classifier));\r
727     }\r
728 \r
729     /**\r
730      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
731      * @param classifier The value of classifier as lessEqual.\r
732      */\r
733     public void setClassifier_LessEqual(String classifier) {\r
734         regClassifier(CK_LE, fRES(classifier));\r
735     }\r
736 \r
737     /**\r
738      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
739      * @param classifier The value of classifier as prefixSearch.\r
740      */\r
741     public void setClassifier_PrefixSearch(String classifier) {\r
742         regClassifier(CK_PS, fRES(classifier));\r
743     }\r
744 \r
745     /**\r
746      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
747      * @param classifier The value of classifier as likeSearch.\r
748      * @param likeSearchOption The option of like-search. (NotNull)\r
749      */\r
750     public void setClassifier_LikeSearch(String classifier, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
751         registerLikeSearchQuery(CK_LS, fRES(classifier), getCValueClassifier(), "Classifier", "Classifier", "classifier", likeSearchOption);\r
752     }\r
753 \r
754     /**\r
755      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
756      * @param classifierList The collection of classifier as inScope.\r
757      */\r
758     public void setClassifier_InScope(Collection<String> classifierList) {\r
759         regClassifier(CK_INS, cTL(classifierList));\r
760     }\r
761 \r
762     /**\r
763      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
764      * @param classifier The collection of classifier as inScope.\r
765      * @param inScopeOption The option of in-scope. (NotNull)\r
766      */\r
767     public void setClassifier_InScope(String classifier, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
768         registerInScopeQuery(CK_INS, fRES(classifier), getCValueClassifier(), "Classifier", "Classifier", "classifier", inScopeOption);\r
769     }\r
770 \r
771     /**\r
772      * IsNull(is null). And OnceRegistered.\r
773      */\r
774     public void setClassifier_IsNull() { regClassifier(CK_ISN, DUMMY_OBJECT); }\r
775 \r
776     /**\r
777      * IsNotNull(is not null). And OnceRegistered.\r
778      */\r
779     public void setClassifier_IsNotNull() { regClassifier(CK_ISNN, DUMMY_OBJECT); }\r
780 \r
781     protected void regClassifier(ConditionKey key, Object value) {\r
782         registerQuery(key, value, getCValueClassifier(), "Classifier", "Classifier", "classifier");\r
783     }\r
784     protected void registerInlineClassifier(ConditionKey key, Object value) {\r
785         registerInlineQuery(key, value, getCValueClassifier(), "Classifier", "Classifier", "classifier");\r
786     }\r
787     abstract protected ConditionValue getCValueClassifier();\r
788 \r
789     /**\r
790      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
791      * @param eaGuid The value of eaGuid as equal.\r
792      */\r
793     public void setEaGuid_Equal(String eaGuid) {\r
794         regEaGuid(CK_EQ, fRES(eaGuid));\r
795     }\r
796 \r
797     /**\r
798      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
799      * @param eaGuid The value of eaGuid as notEqual.\r
800      */\r
801     public void setEaGuid_NotEqual(String eaGuid) {\r
802         regEaGuid(CK_NE, fRES(eaGuid));\r
803     }\r
804 \r
805     /**\r
806      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
807      * @param eaGuid The value of eaGuid as greaterThan.\r
808      */\r
809     public void setEaGuid_GreaterThan(String eaGuid) {\r
810         regEaGuid(CK_GT, fRES(eaGuid));\r
811     }\r
812 \r
813     /**\r
814      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
815      * @param eaGuid The value of eaGuid as lessThan.\r
816      */\r
817     public void setEaGuid_LessThan(String eaGuid) {\r
818         regEaGuid(CK_LT, fRES(eaGuid));\r
819     }\r
820 \r
821     /**\r
822      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
823      * @param eaGuid The value of eaGuid as greaterEqual.\r
824      */\r
825     public void setEaGuid_GreaterEqual(String eaGuid) {\r
826         regEaGuid(CK_GE, fRES(eaGuid));\r
827     }\r
828 \r
829     /**\r
830      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
831      * @param eaGuid The value of eaGuid as lessEqual.\r
832      */\r
833     public void setEaGuid_LessEqual(String eaGuid) {\r
834         regEaGuid(CK_LE, fRES(eaGuid));\r
835     }\r
836 \r
837     /**\r
838      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
839      * @param eaGuid The value of eaGuid as prefixSearch.\r
840      */\r
841     public void setEaGuid_PrefixSearch(String eaGuid) {\r
842         regEaGuid(CK_PS, fRES(eaGuid));\r
843     }\r
844 \r
845     /**\r
846      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
847      * @param eaGuid The value of eaGuid as likeSearch.\r
848      * @param likeSearchOption The option of like-search. (NotNull)\r
849      */\r
850     public void setEaGuid_LikeSearch(String eaGuid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
851         registerLikeSearchQuery(CK_LS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid", likeSearchOption);\r
852     }\r
853 \r
854     /**\r
855      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
856      * @param eaGuidList The collection of eaGuid as inScope.\r
857      */\r
858     public void setEaGuid_InScope(Collection<String> eaGuidList) {\r
859         regEaGuid(CK_INS, cTL(eaGuidList));\r
860     }\r
861 \r
862     /**\r
863      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
864      * @param eaGuid The collection of eaGuid as inScope.\r
865      * @param inScopeOption The option of in-scope. (NotNull)\r
866      */\r
867     public void setEaGuid_InScope(String eaGuid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
868         registerInScopeQuery(CK_INS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid", inScopeOption);\r
869     }\r
870 \r
871     /**\r
872      * IsNull(is null). And OnceRegistered.\r
873      */\r
874     public void setEaGuid_IsNull() { regEaGuid(CK_ISN, DUMMY_OBJECT); }\r
875 \r
876     /**\r
877      * IsNotNull(is not null). And OnceRegistered.\r
878      */\r
879     public void setEaGuid_IsNotNull() { regEaGuid(CK_ISNN, DUMMY_OBJECT); }\r
880 \r
881     protected void regEaGuid(ConditionKey key, Object value) {\r
882         registerQuery(key, value, getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid");\r
883     }\r
884     protected void registerInlineEaGuid(ConditionKey key, Object value) {\r
885         registerInlineQuery(key, value, getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid");\r
886     }\r
887     abstract protected ConditionValue getCValueEaGuid();\r
888 \r
889     /**\r
890      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
891      * @param styleex The value of styleex as equal.\r
892      */\r
893     public void setStyleex_Equal(String styleex) {\r
894         regStyleex(CK_EQ, fRES(styleex));\r
895     }\r
896 \r
897     /**\r
898      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
899      * @param styleex The value of styleex as notEqual.\r
900      */\r
901     public void setStyleex_NotEqual(String styleex) {\r
902         regStyleex(CK_NE, fRES(styleex));\r
903     }\r
904 \r
905     /**\r
906      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
907      * @param styleex The value of styleex as greaterThan.\r
908      */\r
909     public void setStyleex_GreaterThan(String styleex) {\r
910         regStyleex(CK_GT, fRES(styleex));\r
911     }\r
912 \r
913     /**\r
914      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
915      * @param styleex The value of styleex as lessThan.\r
916      */\r
917     public void setStyleex_LessThan(String styleex) {\r
918         regStyleex(CK_LT, fRES(styleex));\r
919     }\r
920 \r
921     /**\r
922      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
923      * @param styleex The value of styleex as greaterEqual.\r
924      */\r
925     public void setStyleex_GreaterEqual(String styleex) {\r
926         regStyleex(CK_GE, fRES(styleex));\r
927     }\r
928 \r
929     /**\r
930      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
931      * @param styleex The value of styleex as lessEqual.\r
932      */\r
933     public void setStyleex_LessEqual(String styleex) {\r
934         regStyleex(CK_LE, fRES(styleex));\r
935     }\r
936 \r
937     /**\r
938      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
939      * @param styleex The value of styleex as prefixSearch.\r
940      */\r
941     public void setStyleex_PrefixSearch(String styleex) {\r
942         regStyleex(CK_PS, fRES(styleex));\r
943     }\r
944 \r
945     /**\r
946      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
947      * @param styleex The value of styleex as likeSearch.\r
948      * @param likeSearchOption The option of like-search. (NotNull)\r
949      */\r
950     public void setStyleex_LikeSearch(String styleex, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
951         registerLikeSearchQuery(CK_LS, fRES(styleex), getCValueStyleex(), "StyleEx", "Styleex", "styleex", likeSearchOption);\r
952     }\r
953 \r
954     /**\r
955      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
956      * @param styleexList The collection of styleex as inScope.\r
957      */\r
958     public void setStyleex_InScope(Collection<String> styleexList) {\r
959         regStyleex(CK_INS, cTL(styleexList));\r
960     }\r
961 \r
962     /**\r
963      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
964      * @param styleex The collection of styleex as inScope.\r
965      * @param inScopeOption The option of in-scope. (NotNull)\r
966      */\r
967     public void setStyleex_InScope(String styleex, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
968         registerInScopeQuery(CK_INS, fRES(styleex), getCValueStyleex(), "StyleEx", "Styleex", "styleex", inScopeOption);\r
969     }\r
970 \r
971     /**\r
972      * IsNull(is null). And OnceRegistered.\r
973      */\r
974     public void setStyleex_IsNull() { regStyleex(CK_ISN, DUMMY_OBJECT); }\r
975 \r
976     /**\r
977      * IsNotNull(is not null). And OnceRegistered.\r
978      */\r
979     public void setStyleex_IsNotNull() { regStyleex(CK_ISNN, DUMMY_OBJECT); }\r
980 \r
981     protected void regStyleex(ConditionKey key, Object value) {\r
982         registerQuery(key, value, getCValueStyleex(), "StyleEx", "Styleex", "styleex");\r
983     }\r
984     protected void registerInlineStyleex(ConditionKey key, Object value) {\r
985         registerInlineQuery(key, value, getCValueStyleex(), "StyleEx", "Styleex", "styleex");\r
986     }\r
987     abstract protected ConditionValue getCValueStyleex();\r
988 \r
989     // Very Internal (for Suppressing Warn about 'Not Use Import')\r
990     protected String getConditionBeanClassNameInternally() { return TOperationparamsCB.class.getName(); }\r
991     protected String getConditionQueryClassNameInternally() { return TOperationparamsCQ.class.getName(); }\r
992 }\r