OSDN Git Service

DBFlute-0.9.3に更新
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / cbean / cq / bs / AbstractBsTStereotypesCQ.java
1 package jp.sourceforge.ea2ddl.dao.cbean.cq.bs;\r
2 \r
3 import java.util.Collection;\r
4 \r
5 import org.seasar.dbflute.cbean.*;\r
6 import org.seasar.dbflute.cbean.ckey.*;\r
7 import org.seasar.dbflute.cbean.coption.*;\r
8 import org.seasar.dbflute.cbean.cvalue.ConditionValue;\r
9 import org.seasar.dbflute.cbean.sqlclause.SqlClause;\r
10 import org.seasar.dbflute.dbmeta.DBMetaProvider;\r
11 import jp.sourceforge.ea2ddl.dao.allcommon.*;\r
12 import jp.sourceforge.ea2ddl.dao.cbean.*;\r
13 import jp.sourceforge.ea2ddl.dao.cbean.cq.*;\r
14 \r
15 /**\r
16  * The abstract condition-query of t_stereotypes.\r
17  * @author DBFlute(AutoGenerator)\r
18  */\r
19 public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {\r
20 \r
21     // ===================================================================================\r
22     //                                                                           Attribute\r
23     //                                                                           =========\r
24     protected final DBMetaProvider _dbmetaProvider = new DBMetaInstanceHandler();\r
25 \r
26     // ===================================================================================\r
27     //                                                                         Constructor\r
28     //                                                                         ===========\r
29     public AbstractBsTStereotypesCQ(ConditionQuery childQuery, SqlClause sqlClause, String aliasName, int nestLevel) {\r
30         super(childQuery, sqlClause, aliasName, nestLevel);\r
31     }\r
32 \r
33     // ===================================================================================\r
34     //                                                                     DBMeta Provider\r
35     //                                                                     ===============\r
36     @Override\r
37     protected DBMetaProvider getDBMetaProvider() {\r
38         return _dbmetaProvider;\r
39     }\r
40 \r
41     // ===================================================================================\r
42     //                                                                          Table Name\r
43     //                                                                          ==========\r
44     public String getTableDbName() {\r
45         return "t_stereotypes";\r
46     }\r
47     \r
48     public String getTableSqlName() {\r
49         return "t_stereotypes";\r
50     }\r
51 \r
52     // ===================================================================================\r
53     //                                                                               Query\r
54     //                                                                               =====\r
55 \r
56     /**\r
57      * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {UQ : VARCHAR(255)}\r
58      * @param stereotype The value of stereotype as equal.\r
59      */\r
60     public void setStereotype_Equal(String stereotype) {\r
61         regStereotype(CK_EQ, fRES(stereotype));\r
62     }\r
63 \r
64     /**\r
65      * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
66      * @param stereotype The value of stereotype as notEqual.\r
67      */\r
68     public void setStereotype_NotEqual(String stereotype) {\r
69         regStereotype(CK_NE, fRES(stereotype));\r
70     }\r
71 \r
72     /**\r
73      * GreaterThan(>). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
74      * @param stereotype The value of stereotype as greaterThan.\r
75      */\r
76     public void setStereotype_GreaterThan(String stereotype) {\r
77         regStereotype(CK_GT, fRES(stereotype));\r
78     }\r
79 \r
80     /**\r
81      * LessThan(<). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
82      * @param stereotype The value of stereotype as lessThan.\r
83      */\r
84     public void setStereotype_LessThan(String stereotype) {\r
85         regStereotype(CK_LT, fRES(stereotype));\r
86     }\r
87 \r
88     /**\r
89      * GreaterEqual(>=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
90      * @param stereotype The value of stereotype as greaterEqual.\r
91      */\r
92     public void setStereotype_GreaterEqual(String stereotype) {\r
93         regStereotype(CK_GE, fRES(stereotype));\r
94     }\r
95 \r
96     /**\r
97      * LessEqual(<=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
98      * @param stereotype The value of stereotype as lessEqual.\r
99      */\r
100     public void setStereotype_LessEqual(String stereotype) {\r
101         regStereotype(CK_LE, fRES(stereotype));\r
102     }\r
103 \r
104     /**\r
105      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
106      * @param stereotype The value of stereotype as prefixSearch.\r
107      */\r
108     public void setStereotype_PrefixSearch(String stereotype) {\r
109         regStereotype(CK_PS, fRES(stereotype));\r
110     }\r
111 \r
112     /**\r
113      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
114      * @param stereotypeList The collection of stereotype as inScope.\r
115      */\r
116     public void setStereotype_InScope(Collection<String> stereotypeList) {\r
117         regStereotype(CK_INS, cTL(stereotypeList));\r
118     }\r
119 \r
120     /**\r
121      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
122      * @param stereotype The value of stereotype as likeSearch.\r
123      * @param likeSearchOption The option of like-search. (NotNull)\r
124      */\r
125     public void setStereotype_LikeSearch(String stereotype, LikeSearchOption likeSearchOption) {\r
126         regLSQ(CK_LS, fRES(stereotype), getCValueStereotype(), "Stereotype", likeSearchOption);\r
127     }\r
128 \r
129     /**\r
130      * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
131      * @param stereotype The value of stereotype as notLikeSearch.\r
132      * @param likeSearchOption The option of not-like-search. (NotNull)\r
133      */\r
134     public void setStereotype_NotLikeSearch(String stereotype, LikeSearchOption likeSearchOption) {\r
135         regLSQ(CK_NLS, fRES(stereotype), getCValueStereotype(), "Stereotype", likeSearchOption);\r
136     }\r
137 \r
138     /**\r
139      * IsNull(is null). And OnlyOnceRegistered.\r
140      */\r
141     public void setStereotype_IsNull() { regStereotype(CK_ISN, DOBJ); }\r
142 \r
143     /**\r
144      * IsNotNull(is not null). And OnlyOnceRegistered.\r
145      */\r
146     public void setStereotype_IsNotNull() { regStereotype(CK_ISNN, DOBJ); }\r
147 \r
148     protected void regStereotype(ConditionKey k, Object v) { regQ(k, v, getCValueStereotype(), "Stereotype"); }\r
149     abstract protected ConditionValue getCValueStereotype();\r
150 \r
151     /**\r
152      * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {UQ : VARCHAR(255)}\r
153      * @param appliesto The value of appliesto as equal.\r
154      */\r
155     public void setAppliesto_Equal(String appliesto) {\r
156         regAppliesto(CK_EQ, fRES(appliesto));\r
157     }\r
158 \r
159     /**\r
160      * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
161      * @param appliesto The value of appliesto as notEqual.\r
162      */\r
163     public void setAppliesto_NotEqual(String appliesto) {\r
164         regAppliesto(CK_NE, fRES(appliesto));\r
165     }\r
166 \r
167     /**\r
168      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
169      * @param appliesto The value of appliesto as greaterThan.\r
170      */\r
171     public void setAppliesto_GreaterThan(String appliesto) {\r
172         regAppliesto(CK_GT, fRES(appliesto));\r
173     }\r
174 \r
175     /**\r
176      * LessThan(&lt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
177      * @param appliesto The value of appliesto as lessThan.\r
178      */\r
179     public void setAppliesto_LessThan(String appliesto) {\r
180         regAppliesto(CK_LT, fRES(appliesto));\r
181     }\r
182 \r
183     /**\r
184      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
185      * @param appliesto The value of appliesto as greaterEqual.\r
186      */\r
187     public void setAppliesto_GreaterEqual(String appliesto) {\r
188         regAppliesto(CK_GE, fRES(appliesto));\r
189     }\r
190 \r
191     /**\r
192      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
193      * @param appliesto The value of appliesto as lessEqual.\r
194      */\r
195     public void setAppliesto_LessEqual(String appliesto) {\r
196         regAppliesto(CK_LE, fRES(appliesto));\r
197     }\r
198 \r
199     /**\r
200      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
201      * @param appliesto The value of appliesto as prefixSearch.\r
202      */\r
203     public void setAppliesto_PrefixSearch(String appliesto) {\r
204         regAppliesto(CK_PS, fRES(appliesto));\r
205     }\r
206 \r
207     /**\r
208      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
209      * @param appliestoList The collection of appliesto as inScope.\r
210      */\r
211     public void setAppliesto_InScope(Collection<String> appliestoList) {\r
212         regAppliesto(CK_INS, cTL(appliestoList));\r
213     }\r
214 \r
215     /**\r
216      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
217      * @param appliesto The value of appliesto as likeSearch.\r
218      * @param likeSearchOption The option of like-search. (NotNull)\r
219      */\r
220     public void setAppliesto_LikeSearch(String appliesto, LikeSearchOption likeSearchOption) {\r
221         regLSQ(CK_LS, fRES(appliesto), getCValueAppliesto(), "AppliesTo", likeSearchOption);\r
222     }\r
223 \r
224     /**\r
225      * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
226      * @param appliesto The value of appliesto as notLikeSearch.\r
227      * @param likeSearchOption The option of not-like-search. (NotNull)\r
228      */\r
229     public void setAppliesto_NotLikeSearch(String appliesto, LikeSearchOption likeSearchOption) {\r
230         regLSQ(CK_NLS, fRES(appliesto), getCValueAppliesto(), "AppliesTo", likeSearchOption);\r
231     }\r
232 \r
233     /**\r
234      * IsNull(is null). And OnlyOnceRegistered.\r
235      */\r
236     public void setAppliesto_IsNull() { regAppliesto(CK_ISN, DOBJ); }\r
237 \r
238     /**\r
239      * IsNotNull(is not null). And OnlyOnceRegistered.\r
240      */\r
241     public void setAppliesto_IsNotNull() { regAppliesto(CK_ISNN, DOBJ); }\r
242 \r
243     protected void regAppliesto(ConditionKey k, Object v) { regQ(k, v, getCValueAppliesto(), "AppliesTo"); }\r
244     abstract protected ConditionValue getCValueAppliesto();\r
245 \r
246     /**\r
247      * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {VARCHAR(255)}\r
248      * @param description The value of description as equal.\r
249      */\r
250     public void setDescription_Equal(String description) {\r
251         regDescription(CK_EQ, fRES(description));\r
252     }\r
253 \r
254     /**\r
255      * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
256      * @param description The value of description as notEqual.\r
257      */\r
258     public void setDescription_NotEqual(String description) {\r
259         regDescription(CK_NE, fRES(description));\r
260     }\r
261 \r
262     /**\r
263      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
264      * @param description The value of description as greaterThan.\r
265      */\r
266     public void setDescription_GreaterThan(String description) {\r
267         regDescription(CK_GT, fRES(description));\r
268     }\r
269 \r
270     /**\r
271      * LessThan(&lt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
272      * @param description The value of description as lessThan.\r
273      */\r
274     public void setDescription_LessThan(String description) {\r
275         regDescription(CK_LT, fRES(description));\r
276     }\r
277 \r
278     /**\r
279      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
280      * @param description The value of description as greaterEqual.\r
281      */\r
282     public void setDescription_GreaterEqual(String description) {\r
283         regDescription(CK_GE, fRES(description));\r
284     }\r
285 \r
286     /**\r
287      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
288      * @param description The value of description as lessEqual.\r
289      */\r
290     public void setDescription_LessEqual(String description) {\r
291         regDescription(CK_LE, fRES(description));\r
292     }\r
293 \r
294     /**\r
295      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
296      * @param description The value of description as prefixSearch.\r
297      */\r
298     public void setDescription_PrefixSearch(String description) {\r
299         regDescription(CK_PS, fRES(description));\r
300     }\r
301 \r
302     /**\r
303      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
304      * @param descriptionList The collection of description as inScope.\r
305      */\r
306     public void setDescription_InScope(Collection<String> descriptionList) {\r
307         regDescription(CK_INS, cTL(descriptionList));\r
308     }\r
309 \r
310     /**\r
311      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
312      * @param description The value of description as likeSearch.\r
313      * @param likeSearchOption The option of like-search. (NotNull)\r
314      */\r
315     public void setDescription_LikeSearch(String description, LikeSearchOption likeSearchOption) {\r
316         regLSQ(CK_LS, fRES(description), getCValueDescription(), "Description", likeSearchOption);\r
317     }\r
318 \r
319     /**\r
320      * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
321      * @param description The value of description as notLikeSearch.\r
322      * @param likeSearchOption The option of not-like-search. (NotNull)\r
323      */\r
324     public void setDescription_NotLikeSearch(String description, LikeSearchOption likeSearchOption) {\r
325         regLSQ(CK_NLS, fRES(description), getCValueDescription(), "Description", likeSearchOption);\r
326     }\r
327 \r
328     /**\r
329      * IsNull(is null). And OnlyOnceRegistered.\r
330      */\r
331     public void setDescription_IsNull() { regDescription(CK_ISN, DOBJ); }\r
332 \r
333     /**\r
334      * IsNotNull(is not null). And OnlyOnceRegistered.\r
335      */\r
336     public void setDescription_IsNotNull() { regDescription(CK_ISNN, DOBJ); }\r
337 \r
338     protected void regDescription(ConditionKey k, Object v) { regQ(k, v, getCValueDescription(), "Description"); }\r
339     abstract protected ConditionValue getCValueDescription();\r
340 \r
341     /**\r
342      * Equal(=). And NullIgnored, OnlyOnceRegistered. {NotNull : BIT}\r
343      * @param mfenabled The value of mfenabled as equal.\r
344      */\r
345     public void setMfenabled_Equal(Boolean mfenabled) {\r
346         regMfenabled(CK_EQ, mfenabled);\r
347     }\r
348 \r
349     protected void regMfenabled(ConditionKey k, Object v) { regQ(k, v, getCValueMfenabled(), "MFEnabled"); }\r
350     abstract protected ConditionValue getCValueMfenabled();\r
351 \r
352     /**\r
353      * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {VARCHAR(255)}\r
354      * @param mfpath The value of mfpath as equal.\r
355      */\r
356     public void setMfpath_Equal(String mfpath) {\r
357         regMfpath(CK_EQ, fRES(mfpath));\r
358     }\r
359 \r
360     /**\r
361      * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
362      * @param mfpath The value of mfpath as notEqual.\r
363      */\r
364     public void setMfpath_NotEqual(String mfpath) {\r
365         regMfpath(CK_NE, fRES(mfpath));\r
366     }\r
367 \r
368     /**\r
369      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
370      * @param mfpath The value of mfpath as greaterThan.\r
371      */\r
372     public void setMfpath_GreaterThan(String mfpath) {\r
373         regMfpath(CK_GT, fRES(mfpath));\r
374     }\r
375 \r
376     /**\r
377      * LessThan(&lt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
378      * @param mfpath The value of mfpath as lessThan.\r
379      */\r
380     public void setMfpath_LessThan(String mfpath) {\r
381         regMfpath(CK_LT, fRES(mfpath));\r
382     }\r
383 \r
384     /**\r
385      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
386      * @param mfpath The value of mfpath as greaterEqual.\r
387      */\r
388     public void setMfpath_GreaterEqual(String mfpath) {\r
389         regMfpath(CK_GE, fRES(mfpath));\r
390     }\r
391 \r
392     /**\r
393      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
394      * @param mfpath The value of mfpath as lessEqual.\r
395      */\r
396     public void setMfpath_LessEqual(String mfpath) {\r
397         regMfpath(CK_LE, fRES(mfpath));\r
398     }\r
399 \r
400     /**\r
401      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
402      * @param mfpath The value of mfpath as prefixSearch.\r
403      */\r
404     public void setMfpath_PrefixSearch(String mfpath) {\r
405         regMfpath(CK_PS, fRES(mfpath));\r
406     }\r
407 \r
408     /**\r
409      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
410      * @param mfpathList The collection of mfpath as inScope.\r
411      */\r
412     public void setMfpath_InScope(Collection<String> mfpathList) {\r
413         regMfpath(CK_INS, cTL(mfpathList));\r
414     }\r
415 \r
416     /**\r
417      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
418      * @param mfpath The value of mfpath as likeSearch.\r
419      * @param likeSearchOption The option of like-search. (NotNull)\r
420      */\r
421     public void setMfpath_LikeSearch(String mfpath, LikeSearchOption likeSearchOption) {\r
422         regLSQ(CK_LS, fRES(mfpath), getCValueMfpath(), "MFPath", likeSearchOption);\r
423     }\r
424 \r
425     /**\r
426      * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
427      * @param mfpath The value of mfpath as notLikeSearch.\r
428      * @param likeSearchOption The option of not-like-search. (NotNull)\r
429      */\r
430     public void setMfpath_NotLikeSearch(String mfpath, LikeSearchOption likeSearchOption) {\r
431         regLSQ(CK_NLS, fRES(mfpath), getCValueMfpath(), "MFPath", likeSearchOption);\r
432     }\r
433 \r
434     /**\r
435      * IsNull(is null). And OnlyOnceRegistered.\r
436      */\r
437     public void setMfpath_IsNull() { regMfpath(CK_ISN, DOBJ); }\r
438 \r
439     /**\r
440      * IsNotNull(is not null). And OnlyOnceRegistered.\r
441      */\r
442     public void setMfpath_IsNotNull() { regMfpath(CK_ISNN, DOBJ); }\r
443 \r
444     protected void regMfpath(ConditionKey k, Object v) { regQ(k, v, getCValueMfpath(), "MFPath"); }\r
445     abstract protected ConditionValue getCValueMfpath();\r
446 \r
447     /**\r
448      * IsNull(is null). And OnlyOnceRegistered.\r
449      */\r
450     public void setMetafile_IsNull() { regMetafile(CK_ISN, DOBJ); }\r
451 \r
452     /**\r
453      * IsNotNull(is not null). And OnlyOnceRegistered.\r
454      */\r
455     public void setMetafile_IsNotNull() { regMetafile(CK_ISNN, DOBJ); }\r
456 \r
457     protected void regMetafile(ConditionKey k, Object v) { regQ(k, v, getCValueMetafile(), "Metafile"); }\r
458     abstract protected ConditionValue getCValueMetafile();\r
459 \r
460     /**\r
461      * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {LONGCHAR(2147483647)}\r
462      * @param style The value of style as equal.\r
463      */\r
464     public void setStyle_Equal(String style) {\r
465         regStyle(CK_EQ, fRES(style));\r
466     }\r
467 \r
468     /**\r
469      * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
470      * @param style The value of style as notEqual.\r
471      */\r
472     public void setStyle_NotEqual(String style) {\r
473         regStyle(CK_NE, fRES(style));\r
474     }\r
475 \r
476     /**\r
477      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
478      * @param style The value of style as greaterThan.\r
479      */\r
480     public void setStyle_GreaterThan(String style) {\r
481         regStyle(CK_GT, fRES(style));\r
482     }\r
483 \r
484     /**\r
485      * LessThan(&lt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
486      * @param style The value of style as lessThan.\r
487      */\r
488     public void setStyle_LessThan(String style) {\r
489         regStyle(CK_LT, fRES(style));\r
490     }\r
491 \r
492     /**\r
493      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
494      * @param style The value of style as greaterEqual.\r
495      */\r
496     public void setStyle_GreaterEqual(String style) {\r
497         regStyle(CK_GE, fRES(style));\r
498     }\r
499 \r
500     /**\r
501      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
502      * @param style The value of style as lessEqual.\r
503      */\r
504     public void setStyle_LessEqual(String style) {\r
505         regStyle(CK_LE, fRES(style));\r
506     }\r
507 \r
508     /**\r
509      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
510      * @param style The value of style as prefixSearch.\r
511      */\r
512     public void setStyle_PrefixSearch(String style) {\r
513         regStyle(CK_PS, fRES(style));\r
514     }\r
515 \r
516     /**\r
517      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
518      * @param styleList The collection of style as inScope.\r
519      */\r
520     public void setStyle_InScope(Collection<String> styleList) {\r
521         regStyle(CK_INS, cTL(styleList));\r
522     }\r
523 \r
524     /**\r
525      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
526      * @param style The value of style as likeSearch.\r
527      * @param likeSearchOption The option of like-search. (NotNull)\r
528      */\r
529     public void setStyle_LikeSearch(String style, LikeSearchOption likeSearchOption) {\r
530         regLSQ(CK_LS, fRES(style), getCValueStyle(), "Style", likeSearchOption);\r
531     }\r
532 \r
533     /**\r
534      * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
535      * @param style The value of style as notLikeSearch.\r
536      * @param likeSearchOption The option of not-like-search. (NotNull)\r
537      */\r
538     public void setStyle_NotLikeSearch(String style, LikeSearchOption likeSearchOption) {\r
539         regLSQ(CK_NLS, fRES(style), getCValueStyle(), "Style", likeSearchOption);\r
540     }\r
541 \r
542     /**\r
543      * IsNull(is null). And OnlyOnceRegistered.\r
544      */\r
545     public void setStyle_IsNull() { regStyle(CK_ISN, DOBJ); }\r
546 \r
547     /**\r
548      * IsNotNull(is not null). And OnlyOnceRegistered.\r
549      */\r
550     public void setStyle_IsNotNull() { regStyle(CK_ISNN, DOBJ); }\r
551 \r
552     protected void regStyle(ConditionKey k, Object v) { regQ(k, v, getCValueStyle(), "Style"); }\r
553     abstract protected ConditionValue getCValueStyle();\r
554 \r
555     /**\r
556      * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {VARCHAR(50)}\r
557      * @param eaGuid The value of eaGuid as equal.\r
558      */\r
559     public void setEaGuid_Equal(String eaGuid) {\r
560         regEaGuid(CK_EQ, fRES(eaGuid));\r
561     }\r
562 \r
563     /**\r
564      * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
565      * @param eaGuid The value of eaGuid as notEqual.\r
566      */\r
567     public void setEaGuid_NotEqual(String eaGuid) {\r
568         regEaGuid(CK_NE, fRES(eaGuid));\r
569     }\r
570 \r
571     /**\r
572      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
573      * @param eaGuid The value of eaGuid as greaterThan.\r
574      */\r
575     public void setEaGuid_GreaterThan(String eaGuid) {\r
576         regEaGuid(CK_GT, fRES(eaGuid));\r
577     }\r
578 \r
579     /**\r
580      * LessThan(&lt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
581      * @param eaGuid The value of eaGuid as lessThan.\r
582      */\r
583     public void setEaGuid_LessThan(String eaGuid) {\r
584         regEaGuid(CK_LT, fRES(eaGuid));\r
585     }\r
586 \r
587     /**\r
588      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
589      * @param eaGuid The value of eaGuid as greaterEqual.\r
590      */\r
591     public void setEaGuid_GreaterEqual(String eaGuid) {\r
592         regEaGuid(CK_GE, fRES(eaGuid));\r
593     }\r
594 \r
595     /**\r
596      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
597      * @param eaGuid The value of eaGuid as lessEqual.\r
598      */\r
599     public void setEaGuid_LessEqual(String eaGuid) {\r
600         regEaGuid(CK_LE, fRES(eaGuid));\r
601     }\r
602 \r
603     /**\r
604      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
605      * @param eaGuid The value of eaGuid as prefixSearch.\r
606      */\r
607     public void setEaGuid_PrefixSearch(String eaGuid) {\r
608         regEaGuid(CK_PS, fRES(eaGuid));\r
609     }\r
610 \r
611     /**\r
612      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
613      * @param eaGuidList The collection of eaGuid as inScope.\r
614      */\r
615     public void setEaGuid_InScope(Collection<String> eaGuidList) {\r
616         regEaGuid(CK_INS, cTL(eaGuidList));\r
617     }\r
618 \r
619     /**\r
620      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
621      * @param eaGuid The value of eaGuid as likeSearch.\r
622      * @param likeSearchOption The option of like-search. (NotNull)\r
623      */\r
624     public void setEaGuid_LikeSearch(String eaGuid, LikeSearchOption likeSearchOption) {\r
625         regLSQ(CK_LS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", likeSearchOption);\r
626     }\r
627 \r
628     /**\r
629      * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
630      * @param eaGuid The value of eaGuid as notLikeSearch.\r
631      * @param likeSearchOption The option of not-like-search. (NotNull)\r
632      */\r
633     public void setEaGuid_NotLikeSearch(String eaGuid, LikeSearchOption likeSearchOption) {\r
634         regLSQ(CK_NLS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", likeSearchOption);\r
635     }\r
636 \r
637     /**\r
638      * IsNull(is null). And OnlyOnceRegistered.\r
639      */\r
640     public void setEaGuid_IsNull() { regEaGuid(CK_ISN, DOBJ); }\r
641 \r
642     /**\r
643      * IsNotNull(is not null). And OnlyOnceRegistered.\r
644      */\r
645     public void setEaGuid_IsNotNull() { regEaGuid(CK_ISNN, DOBJ); }\r
646 \r
647     protected void regEaGuid(ConditionKey k, Object v) { regQ(k, v, getCValueEaGuid(), "ea_guid"); }\r
648     abstract protected ConditionValue getCValueEaGuid();\r
649 \r
650     /**\r
651      * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {VARCHAR(100)}\r
652      * @param visualtype The value of visualtype as equal.\r
653      */\r
654     public void setVisualtype_Equal(String visualtype) {\r
655         regVisualtype(CK_EQ, fRES(visualtype));\r
656     }\r
657 \r
658     /**\r
659      * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
660      * @param visualtype The value of visualtype as notEqual.\r
661      */\r
662     public void setVisualtype_NotEqual(String visualtype) {\r
663         regVisualtype(CK_NE, fRES(visualtype));\r
664     }\r
665 \r
666     /**\r
667      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
668      * @param visualtype The value of visualtype as greaterThan.\r
669      */\r
670     public void setVisualtype_GreaterThan(String visualtype) {\r
671         regVisualtype(CK_GT, fRES(visualtype));\r
672     }\r
673 \r
674     /**\r
675      * LessThan(&lt;). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
676      * @param visualtype The value of visualtype as lessThan.\r
677      */\r
678     public void setVisualtype_LessThan(String visualtype) {\r
679         regVisualtype(CK_LT, fRES(visualtype));\r
680     }\r
681 \r
682     /**\r
683      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
684      * @param visualtype The value of visualtype as greaterEqual.\r
685      */\r
686     public void setVisualtype_GreaterEqual(String visualtype) {\r
687         regVisualtype(CK_GE, fRES(visualtype));\r
688     }\r
689 \r
690     /**\r
691      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
692      * @param visualtype The value of visualtype as lessEqual.\r
693      */\r
694     public void setVisualtype_LessEqual(String visualtype) {\r
695         regVisualtype(CK_LE, fRES(visualtype));\r
696     }\r
697 \r
698     /**\r
699      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
700      * @param visualtype The value of visualtype as prefixSearch.\r
701      */\r
702     public void setVisualtype_PrefixSearch(String visualtype) {\r
703         regVisualtype(CK_PS, fRES(visualtype));\r
704     }\r
705 \r
706     /**\r
707      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
708      * @param visualtypeList The collection of visualtype as inScope.\r
709      */\r
710     public void setVisualtype_InScope(Collection<String> visualtypeList) {\r
711         regVisualtype(CK_INS, cTL(visualtypeList));\r
712     }\r
713 \r
714     /**\r
715      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
716      * @param visualtype The value of visualtype as likeSearch.\r
717      * @param likeSearchOption The option of like-search. (NotNull)\r
718      */\r
719     public void setVisualtype_LikeSearch(String visualtype, LikeSearchOption likeSearchOption) {\r
720         regLSQ(CK_LS, fRES(visualtype), getCValueVisualtype(), "VisualType", likeSearchOption);\r
721     }\r
722 \r
723     /**\r
724      * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
725      * @param visualtype The value of visualtype as notLikeSearch.\r
726      * @param likeSearchOption The option of not-like-search. (NotNull)\r
727      */\r
728     public void setVisualtype_NotLikeSearch(String visualtype, LikeSearchOption likeSearchOption) {\r
729         regLSQ(CK_NLS, fRES(visualtype), getCValueVisualtype(), "VisualType", likeSearchOption);\r
730     }\r
731 \r
732     /**\r
733      * IsNull(is null). And OnlyOnceRegistered.\r
734      */\r
735     public void setVisualtype_IsNull() { regVisualtype(CK_ISN, DOBJ); }\r
736 \r
737     /**\r
738      * IsNotNull(is not null). And OnlyOnceRegistered.\r
739      */\r
740     public void setVisualtype_IsNotNull() { regVisualtype(CK_ISNN, DOBJ); }\r
741 \r
742     protected void regVisualtype(ConditionKey k, Object v) { regQ(k, v, getCValueVisualtype(), "VisualType"); }\r
743     abstract protected ConditionValue getCValueVisualtype();\r
744 \r
745     // ===================================================================================\r
746     //                                                                       Very Internal\r
747     //                                                                       =============\r
748     // Very Internal (for Suppressing Warn about 'Not Use Import')\r
749     String xCB() { return TStereotypesCB.class.getName(); }\r
750     String xCQ() { return TStereotypesCQ.class.getName(); }\r
751     String xLSO() { return LikeSearchOption.class.getName(); }\r
752 }\r