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 / AbstractBsTSecuserCQ.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_secuser.\r
14  * @author DBFlute(AutoGenerator)\r
15  */
16 @SuppressWarnings("unchecked")\r
17 public abstract class AbstractBsTSecuserCQ extends AbstractConditionQuery {\r
18 \r
19     // ===================================================================================\r
20     //                                                                         Constructor\r
21     //                                                                         ===========\r
22     public AbstractBsTSecuserCQ(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_secuser";\r
31     }\r
32     \r
33     public String getTableSqlName() {\r
34         return "t_secuser";\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 userid The value of userid as equal.\r
44      */\r
45     public void setUserid_Equal(String userid) {\r
46         regUserid(CK_EQ, fRES(userid));\r
47     }\r
48 \r
49     /**\r
50      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
51      * @param userid The value of userid as notEqual.\r
52      */\r
53     public void setUserid_NotEqual(String userid) {\r
54         regUserid(CK_NE, fRES(userid));\r
55     }\r
56 \r
57     /**\r
58      * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
59      * @param userid The value of userid as greaterThan.\r
60      */\r
61     public void setUserid_GreaterThan(String userid) {\r
62         regUserid(CK_GT, fRES(userid));\r
63     }\r
64 \r
65     /**\r
66      * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
67      * @param userid The value of userid as lessThan.\r
68      */\r
69     public void setUserid_LessThan(String userid) {\r
70         regUserid(CK_LT, fRES(userid));\r
71     }\r
72 \r
73     /**\r
74      * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
75      * @param userid The value of userid as greaterEqual.\r
76      */\r
77     public void setUserid_GreaterEqual(String userid) {\r
78         regUserid(CK_GE, fRES(userid));\r
79     }\r
80 \r
81     /**\r
82      * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
83      * @param userid The value of userid as lessEqual.\r
84      */\r
85     public void setUserid_LessEqual(String userid) {\r
86         regUserid(CK_LE, fRES(userid));\r
87     }\r
88 \r
89     /**\r
90      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
91      * @param userid The value of userid as prefixSearch.\r
92      */\r
93     public void setUserid_PrefixSearch(String userid) {\r
94         regUserid(CK_PS, fRES(userid));\r
95     }\r
96 \r
97     /**\r
98      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
99      * @param userid The value of userid as likeSearch.\r
100      * @param likeSearchOption The option of like-search. (NotNull)\r
101      */\r
102     public void setUserid_LikeSearch(String userid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
103         registerLikeSearchQuery(CK_LS, fRES(userid), getCValueUserid(), "UserID", "Userid", "userid", likeSearchOption);\r
104     }\r
105 \r
106     /**\r
107      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
108      * @param useridList The collection of userid as inScope.\r
109      */\r
110     public void setUserid_InScope(Collection<String> useridList) {\r
111         regUserid(CK_INS, cTL(useridList));\r
112     }\r
113 \r
114     /**\r
115      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
116      * @param userid The collection of userid as inScope.\r
117      * @param inScopeOption The option of in-scope. (NotNull)\r
118      */\r
119     public void setUserid_InScope(String userid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
120         registerInScopeQuery(CK_INS, fRES(userid), getCValueUserid(), "UserID", "Userid", "userid", inScopeOption);\r
121     }\r
122 \r
123     /**\r
124      * IsNull(is null). And OnceRegistered.\r
125      */\r
126     public void setUserid_IsNull() { regUserid(CK_ISN, DUMMY_OBJECT); }\r
127 \r
128     /**\r
129      * IsNotNull(is not null). And OnceRegistered.\r
130      */\r
131     public void setUserid_IsNotNull() { regUserid(CK_ISNN, DUMMY_OBJECT); }\r
132 \r
133     protected void regUserid(ConditionKey key, Object value) {\r
134         registerQuery(key, value, getCValueUserid(), "UserID", "Userid", "userid");\r
135     }\r
136     protected void registerInlineUserid(ConditionKey key, Object value) {\r
137         registerInlineQuery(key, value, getCValueUserid(), "UserID", "Userid", "userid");\r
138     }\r
139     abstract protected ConditionValue getCValueUserid();\r
140 \r
141     /**\r
142      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(32)}\r
143      * @param userlogin The value of userlogin as equal.\r
144      */\r
145     public void setUserlogin_Equal(String userlogin) {\r
146         regUserlogin(CK_EQ, fRES(userlogin));\r
147     }\r
148 \r
149     /**\r
150      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
151      * @param userlogin The value of userlogin as notEqual.\r
152      */\r
153     public void setUserlogin_NotEqual(String userlogin) {\r
154         regUserlogin(CK_NE, fRES(userlogin));\r
155     }\r
156 \r
157     /**\r
158      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
159      * @param userlogin The value of userlogin as greaterThan.\r
160      */\r
161     public void setUserlogin_GreaterThan(String userlogin) {\r
162         regUserlogin(CK_GT, fRES(userlogin));\r
163     }\r
164 \r
165     /**\r
166      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
167      * @param userlogin The value of userlogin as lessThan.\r
168      */\r
169     public void setUserlogin_LessThan(String userlogin) {\r
170         regUserlogin(CK_LT, fRES(userlogin));\r
171     }\r
172 \r
173     /**\r
174      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
175      * @param userlogin The value of userlogin as greaterEqual.\r
176      */\r
177     public void setUserlogin_GreaterEqual(String userlogin) {\r
178         regUserlogin(CK_GE, fRES(userlogin));\r
179     }\r
180 \r
181     /**\r
182      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
183      * @param userlogin The value of userlogin as lessEqual.\r
184      */\r
185     public void setUserlogin_LessEqual(String userlogin) {\r
186         regUserlogin(CK_LE, fRES(userlogin));\r
187     }\r
188 \r
189     /**\r
190      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
191      * @param userlogin The value of userlogin as prefixSearch.\r
192      */\r
193     public void setUserlogin_PrefixSearch(String userlogin) {\r
194         regUserlogin(CK_PS, fRES(userlogin));\r
195     }\r
196 \r
197     /**\r
198      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
199      * @param userlogin The value of userlogin as likeSearch.\r
200      * @param likeSearchOption The option of like-search. (NotNull)\r
201      */\r
202     public void setUserlogin_LikeSearch(String userlogin, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
203         registerLikeSearchQuery(CK_LS, fRES(userlogin), getCValueUserlogin(), "UserLogin", "Userlogin", "userlogin", likeSearchOption);\r
204     }\r
205 \r
206     /**\r
207      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
208      * @param userloginList The collection of userlogin as inScope.\r
209      */\r
210     public void setUserlogin_InScope(Collection<String> userloginList) {\r
211         regUserlogin(CK_INS, cTL(userloginList));\r
212     }\r
213 \r
214     /**\r
215      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
216      * @param userlogin The collection of userlogin as inScope.\r
217      * @param inScopeOption The option of in-scope. (NotNull)\r
218      */\r
219     public void setUserlogin_InScope(String userlogin, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
220         registerInScopeQuery(CK_INS, fRES(userlogin), getCValueUserlogin(), "UserLogin", "Userlogin", "userlogin", inScopeOption);\r
221     }\r
222 \r
223     /**\r
224      * IsNull(is null). And OnceRegistered.\r
225      */\r
226     public void setUserlogin_IsNull() { regUserlogin(CK_ISN, DUMMY_OBJECT); }\r
227 \r
228     /**\r
229      * IsNotNull(is not null). And OnceRegistered.\r
230      */\r
231     public void setUserlogin_IsNotNull() { regUserlogin(CK_ISNN, DUMMY_OBJECT); }\r
232 \r
233     protected void regUserlogin(ConditionKey key, Object value) {\r
234         registerQuery(key, value, getCValueUserlogin(), "UserLogin", "Userlogin", "userlogin");\r
235     }\r
236     protected void registerInlineUserlogin(ConditionKey key, Object value) {\r
237         registerInlineQuery(key, value, getCValueUserlogin(), "UserLogin", "Userlogin", "userlogin");\r
238     }\r
239     abstract protected ConditionValue getCValueUserlogin();\r
240 \r
241     /**\r
242      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
243      * @param firstname The value of firstname as equal.\r
244      */\r
245     public void setFirstname_Equal(String firstname) {\r
246         regFirstname(CK_EQ, fRES(firstname));\r
247     }\r
248 \r
249     /**\r
250      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
251      * @param firstname The value of firstname as notEqual.\r
252      */\r
253     public void setFirstname_NotEqual(String firstname) {\r
254         regFirstname(CK_NE, fRES(firstname));\r
255     }\r
256 \r
257     /**\r
258      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
259      * @param firstname The value of firstname as greaterThan.\r
260      */\r
261     public void setFirstname_GreaterThan(String firstname) {\r
262         regFirstname(CK_GT, fRES(firstname));\r
263     }\r
264 \r
265     /**\r
266      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
267      * @param firstname The value of firstname as lessThan.\r
268      */\r
269     public void setFirstname_LessThan(String firstname) {\r
270         regFirstname(CK_LT, fRES(firstname));\r
271     }\r
272 \r
273     /**\r
274      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
275      * @param firstname The value of firstname as greaterEqual.\r
276      */\r
277     public void setFirstname_GreaterEqual(String firstname) {\r
278         regFirstname(CK_GE, fRES(firstname));\r
279     }\r
280 \r
281     /**\r
282      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
283      * @param firstname The value of firstname as lessEqual.\r
284      */\r
285     public void setFirstname_LessEqual(String firstname) {\r
286         regFirstname(CK_LE, fRES(firstname));\r
287     }\r
288 \r
289     /**\r
290      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
291      * @param firstname The value of firstname as prefixSearch.\r
292      */\r
293     public void setFirstname_PrefixSearch(String firstname) {\r
294         regFirstname(CK_PS, fRES(firstname));\r
295     }\r
296 \r
297     /**\r
298      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
299      * @param firstname The value of firstname as likeSearch.\r
300      * @param likeSearchOption The option of like-search. (NotNull)\r
301      */\r
302     public void setFirstname_LikeSearch(String firstname, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
303         registerLikeSearchQuery(CK_LS, fRES(firstname), getCValueFirstname(), "FirstName", "Firstname", "firstname", likeSearchOption);\r
304     }\r
305 \r
306     /**\r
307      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
308      * @param firstnameList The collection of firstname as inScope.\r
309      */\r
310     public void setFirstname_InScope(Collection<String> firstnameList) {\r
311         regFirstname(CK_INS, cTL(firstnameList));\r
312     }\r
313 \r
314     /**\r
315      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
316      * @param firstname The collection of firstname as inScope.\r
317      * @param inScopeOption The option of in-scope. (NotNull)\r
318      */\r
319     public void setFirstname_InScope(String firstname, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
320         registerInScopeQuery(CK_INS, fRES(firstname), getCValueFirstname(), "FirstName", "Firstname", "firstname", inScopeOption);\r
321     }\r
322 \r
323     /**\r
324      * IsNull(is null). And OnceRegistered.\r
325      */\r
326     public void setFirstname_IsNull() { regFirstname(CK_ISN, DUMMY_OBJECT); }\r
327 \r
328     /**\r
329      * IsNotNull(is not null). And OnceRegistered.\r
330      */\r
331     public void setFirstname_IsNotNull() { regFirstname(CK_ISNN, DUMMY_OBJECT); }\r
332 \r
333     protected void regFirstname(ConditionKey key, Object value) {\r
334         registerQuery(key, value, getCValueFirstname(), "FirstName", "Firstname", "firstname");\r
335     }\r
336     protected void registerInlineFirstname(ConditionKey key, Object value) {\r
337         registerInlineQuery(key, value, getCValueFirstname(), "FirstName", "Firstname", "firstname");\r
338     }\r
339     abstract protected ConditionValue getCValueFirstname();\r
340 \r
341     /**\r
342      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
343      * @param surname The value of surname as equal.\r
344      */\r
345     public void setSurname_Equal(String surname) {\r
346         regSurname(CK_EQ, fRES(surname));\r
347     }\r
348 \r
349     /**\r
350      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
351      * @param surname The value of surname as notEqual.\r
352      */\r
353     public void setSurname_NotEqual(String surname) {\r
354         regSurname(CK_NE, fRES(surname));\r
355     }\r
356 \r
357     /**\r
358      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
359      * @param surname The value of surname as greaterThan.\r
360      */\r
361     public void setSurname_GreaterThan(String surname) {\r
362         regSurname(CK_GT, fRES(surname));\r
363     }\r
364 \r
365     /**\r
366      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
367      * @param surname The value of surname as lessThan.\r
368      */\r
369     public void setSurname_LessThan(String surname) {\r
370         regSurname(CK_LT, fRES(surname));\r
371     }\r
372 \r
373     /**\r
374      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
375      * @param surname The value of surname as greaterEqual.\r
376      */\r
377     public void setSurname_GreaterEqual(String surname) {\r
378         regSurname(CK_GE, fRES(surname));\r
379     }\r
380 \r
381     /**\r
382      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
383      * @param surname The value of surname as lessEqual.\r
384      */\r
385     public void setSurname_LessEqual(String surname) {\r
386         regSurname(CK_LE, fRES(surname));\r
387     }\r
388 \r
389     /**\r
390      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
391      * @param surname The value of surname as prefixSearch.\r
392      */\r
393     public void setSurname_PrefixSearch(String surname) {\r
394         regSurname(CK_PS, fRES(surname));\r
395     }\r
396 \r
397     /**\r
398      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
399      * @param surname The value of surname as likeSearch.\r
400      * @param likeSearchOption The option of like-search. (NotNull)\r
401      */\r
402     public void setSurname_LikeSearch(String surname, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
403         registerLikeSearchQuery(CK_LS, fRES(surname), getCValueSurname(), "Surname", "Surname", "surname", likeSearchOption);\r
404     }\r
405 \r
406     /**\r
407      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
408      * @param surnameList The collection of surname as inScope.\r
409      */\r
410     public void setSurname_InScope(Collection<String> surnameList) {\r
411         regSurname(CK_INS, cTL(surnameList));\r
412     }\r
413 \r
414     /**\r
415      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
416      * @param surname The collection of surname as inScope.\r
417      * @param inScopeOption The option of in-scope. (NotNull)\r
418      */\r
419     public void setSurname_InScope(String surname, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
420         registerInScopeQuery(CK_INS, fRES(surname), getCValueSurname(), "Surname", "Surname", "surname", inScopeOption);\r
421     }\r
422 \r
423     /**\r
424      * IsNull(is null). And OnceRegistered.\r
425      */\r
426     public void setSurname_IsNull() { regSurname(CK_ISN, DUMMY_OBJECT); }\r
427 \r
428     /**\r
429      * IsNotNull(is not null). And OnceRegistered.\r
430      */\r
431     public void setSurname_IsNotNull() { regSurname(CK_ISNN, DUMMY_OBJECT); }\r
432 \r
433     protected void regSurname(ConditionKey key, Object value) {\r
434         registerQuery(key, value, getCValueSurname(), "Surname", "Surname", "surname");\r
435     }\r
436     protected void registerInlineSurname(ConditionKey key, Object value) {\r
437         registerInlineQuery(key, value, getCValueSurname(), "Surname", "Surname", "surname");\r
438     }\r
439     abstract protected ConditionValue getCValueSurname();\r
440 \r
441     /**\r
442      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
443      * @param department The value of department as equal.\r
444      */\r
445     public void setDepartment_Equal(String department) {\r
446         regDepartment(CK_EQ, fRES(department));\r
447     }\r
448 \r
449     /**\r
450      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
451      * @param department The value of department as notEqual.\r
452      */\r
453     public void setDepartment_NotEqual(String department) {\r
454         regDepartment(CK_NE, fRES(department));\r
455     }\r
456 \r
457     /**\r
458      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
459      * @param department The value of department as greaterThan.\r
460      */\r
461     public void setDepartment_GreaterThan(String department) {\r
462         regDepartment(CK_GT, fRES(department));\r
463     }\r
464 \r
465     /**\r
466      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
467      * @param department The value of department as lessThan.\r
468      */\r
469     public void setDepartment_LessThan(String department) {\r
470         regDepartment(CK_LT, fRES(department));\r
471     }\r
472 \r
473     /**\r
474      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
475      * @param department The value of department as greaterEqual.\r
476      */\r
477     public void setDepartment_GreaterEqual(String department) {\r
478         regDepartment(CK_GE, fRES(department));\r
479     }\r
480 \r
481     /**\r
482      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
483      * @param department The value of department as lessEqual.\r
484      */\r
485     public void setDepartment_LessEqual(String department) {\r
486         regDepartment(CK_LE, fRES(department));\r
487     }\r
488 \r
489     /**\r
490      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
491      * @param department The value of department as prefixSearch.\r
492      */\r
493     public void setDepartment_PrefixSearch(String department) {\r
494         regDepartment(CK_PS, fRES(department));\r
495     }\r
496 \r
497     /**\r
498      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
499      * @param department The value of department as likeSearch.\r
500      * @param likeSearchOption The option of like-search. (NotNull)\r
501      */\r
502     public void setDepartment_LikeSearch(String department, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
503         registerLikeSearchQuery(CK_LS, fRES(department), getCValueDepartment(), "Department", "Department", "department", likeSearchOption);\r
504     }\r
505 \r
506     /**\r
507      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
508      * @param departmentList The collection of department as inScope.\r
509      */\r
510     public void setDepartment_InScope(Collection<String> departmentList) {\r
511         regDepartment(CK_INS, cTL(departmentList));\r
512     }\r
513 \r
514     /**\r
515      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
516      * @param department The collection of department as inScope.\r
517      * @param inScopeOption The option of in-scope. (NotNull)\r
518      */\r
519     public void setDepartment_InScope(String department, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
520         registerInScopeQuery(CK_INS, fRES(department), getCValueDepartment(), "Department", "Department", "department", inScopeOption);\r
521     }\r
522 \r
523     /**\r
524      * IsNull(is null). And OnceRegistered.\r
525      */\r
526     public void setDepartment_IsNull() { regDepartment(CK_ISN, DUMMY_OBJECT); }\r
527 \r
528     /**\r
529      * IsNotNull(is not null). And OnceRegistered.\r
530      */\r
531     public void setDepartment_IsNotNull() { regDepartment(CK_ISNN, DUMMY_OBJECT); }\r
532 \r
533     protected void regDepartment(ConditionKey key, Object value) {\r
534         registerQuery(key, value, getCValueDepartment(), "Department", "Department", "department");\r
535     }\r
536     protected void registerInlineDepartment(ConditionKey key, Object value) {\r
537         registerInlineQuery(key, value, getCValueDepartment(), "Department", "Department", "department");\r
538     }\r
539     abstract protected ConditionValue getCValueDepartment();\r
540 \r
541     /**\r
542      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(12)}\r
543      * @param password The value of password as equal.\r
544      */\r
545     public void setPassword_Equal(String password) {\r
546         regPassword(CK_EQ, fRES(password));\r
547     }\r
548 \r
549     /**\r
550      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
551      * @param password The value of password as notEqual.\r
552      */\r
553     public void setPassword_NotEqual(String password) {\r
554         regPassword(CK_NE, fRES(password));\r
555     }\r
556 \r
557     /**\r
558      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
559      * @param password The value of password as greaterThan.\r
560      */\r
561     public void setPassword_GreaterThan(String password) {\r
562         regPassword(CK_GT, fRES(password));\r
563     }\r
564 \r
565     /**\r
566      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
567      * @param password The value of password as lessThan.\r
568      */\r
569     public void setPassword_LessThan(String password) {\r
570         regPassword(CK_LT, fRES(password));\r
571     }\r
572 \r
573     /**\r
574      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
575      * @param password The value of password as greaterEqual.\r
576      */\r
577     public void setPassword_GreaterEqual(String password) {\r
578         regPassword(CK_GE, fRES(password));\r
579     }\r
580 \r
581     /**\r
582      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
583      * @param password The value of password as lessEqual.\r
584      */\r
585     public void setPassword_LessEqual(String password) {\r
586         regPassword(CK_LE, fRES(password));\r
587     }\r
588 \r
589     /**\r
590      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
591      * @param password The value of password as prefixSearch.\r
592      */\r
593     public void setPassword_PrefixSearch(String password) {\r
594         regPassword(CK_PS, fRES(password));\r
595     }\r
596 \r
597     /**\r
598      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
599      * @param password The value of password as likeSearch.\r
600      * @param likeSearchOption The option of like-search. (NotNull)\r
601      */\r
602     public void setPassword_LikeSearch(String password, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
603         registerLikeSearchQuery(CK_LS, fRES(password), getCValuePassword(), "Password", "Password", "password", likeSearchOption);\r
604     }\r
605 \r
606     /**\r
607      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
608      * @param passwordList The collection of password as inScope.\r
609      */\r
610     public void setPassword_InScope(Collection<String> passwordList) {\r
611         regPassword(CK_INS, cTL(passwordList));\r
612     }\r
613 \r
614     /**\r
615      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
616      * @param password The collection of password as inScope.\r
617      * @param inScopeOption The option of in-scope. (NotNull)\r
618      */\r
619     public void setPassword_InScope(String password, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
620         registerInScopeQuery(CK_INS, fRES(password), getCValuePassword(), "Password", "Password", "password", inScopeOption);\r
621     }\r
622 \r
623     /**\r
624      * IsNull(is null). And OnceRegistered.\r
625      */\r
626     public void setPassword_IsNull() { regPassword(CK_ISN, DUMMY_OBJECT); }\r
627 \r
628     /**\r
629      * IsNotNull(is not null). And OnceRegistered.\r
630      */\r
631     public void setPassword_IsNotNull() { regPassword(CK_ISNN, DUMMY_OBJECT); }\r
632 \r
633     protected void regPassword(ConditionKey key, Object value) {\r
634         registerQuery(key, value, getCValuePassword(), "Password", "Password", "password");\r
635     }\r
636     protected void registerInlinePassword(ConditionKey key, Object value) {\r
637         registerInlineQuery(key, value, getCValuePassword(), "Password", "Password", "password");\r
638     }\r
639     abstract protected ConditionValue getCValuePassword();\r
640 \r
641     // Very Internal (for Suppressing Warn about 'Not Use Import')\r
642     protected String getConditionBeanClassNameInternally() { return TSecuserCB.class.getName(); }\r
643     protected String getConditionQueryClassNameInternally() { return TSecuserCQ.class.getName(); }\r
644 }\r