OSDN Git Service

作業中
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / cbean / cq / bs / AbstractBsTOperationCQ.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_operation.\r
14  * @author DBFlute(AutoGenerator)\r
15  */
16 @SuppressWarnings("unchecked")\r
17 public abstract class AbstractBsTOperationCQ extends AbstractConditionQuery {\r
18 \r
19     // ===================================================================================\r
20     //                                                                         Constructor\r
21     //                                                                         ===========\r
22     public AbstractBsTOperationCQ(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_operation";\r
31     }\r
32     \r
33     public String getTableSqlName() {\r
34         return "t_operation";\r
35     }\r
36 \r
37     // ===================================================================================\r
38     //                                                                               Query\r
39     //                                                                               =====\r
40     \r
41     /**\r
42      * Equal(=). And NullIgnored, OnceRegistered. {PK : UQ : COUNTER : NotNull}\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          * @param tOperationparamsCBquery Query.\r
99          * @deprecated Please use inScopeTOperationparamsList(subQuery) method.\r
100          */\r
101     public void setOperationid_InScopeSubQuery_TOperationparamsList(TOperationparamsCQ tOperationparamsCBquery) {\r
102         String subQueryPropertyName = keepOperationid_InScopeSubQuery_TOperationparamsList(tOperationparamsCBquery);// for saving query-value.\r
103         registerInScopeSubQuery(tOperationparamsCBquery, "OperationID", "OperationID", subQueryPropertyName);\r
104     }\r
105     public void inScopeTOperationparamsList(SubQuery<TOperationparamsCB> subQuery) {\r
106         assertObjectNotNull("subQuery<TOperationparamsCB>", subQuery);\r
107         TOperationparamsCB cb = new TOperationparamsCB(); cb.xsetupForInScopeSubQuery(); subQuery.query(cb);\r
108         String subQueryPropertyName = keepOperationid_InScopeSubQuery_TOperationparamsList(cb.query());// for saving query-value.\r
109         registerInScopeSubQuery(cb.query(), "OperationID", "OperationID", subQueryPropertyName);\r
110     }\r
111     abstract public String keepOperationid_InScopeSubQuery_TOperationparamsList(TOperationparamsCQ subQuery);\r
112 \r
113     public void notInScopeTOperationparamsList(SubQuery<TOperationparamsCB> subQuery) {\r
114         assertObjectNotNull("subQuery<TOperationparamsCB>", subQuery);\r
115         TOperationparamsCB cb = new TOperationparamsCB(); cb.xsetupForInScopeSubQuery(); subQuery.query(cb);\r
116         String subQueryPropertyName = keepOperationid_NotInScopeSubQuery_TOperationparamsList(cb.query());// for saving query-value.\r
117         registerNotInScopeSubQuery(cb.query(), "OperationID", "OperationID", subQueryPropertyName);\r
118     }\r
119     abstract public String keepOperationid_NotInScopeSubQuery_TOperationparamsList(TOperationparamsCQ subQuery);\r
120 \r
121     /**\r
122          * @param tOperationparamsCBquery Query.\r
123          * @deprecated Please use existsTOperationparamsList(subQuery) method.\r
124          */\r
125     public void setOperationid_ExistsSubQuery_TOperationparamsList(TOperationparamsCQ tOperationparamsCBquery) {\r
126         String subQueryPropertyName = keepOperationid_ExistsSubQuery_TOperationparamsList(tOperationparamsCBquery);// for saving query-value.\r
127         registerExistsSubQuery(tOperationparamsCBquery, "OperationID", "OperationID", subQueryPropertyName);\r
128     }\r
129     /**\r
130      * Set up 'exists' sub-query. {exists (select OperationID from t_operationparams where ...)}\r
131      * @param subQuery The sub-query of Operationid_ExistsSubQuery_TOperationparamsList for 'exists'. (NotNull)\r
132      */\r
133     public void existsTOperationparamsList(SubQuery<TOperationparamsCB> subQuery) {\r
134         assertObjectNotNull("subQuery<TOperationparamsCB>", subQuery);\r
135         TOperationparamsCB cb = new TOperationparamsCB(); cb.xsetupForExistsSubQuery(); subQuery.query(cb);\r
136         String subQueryPropertyName = keepOperationid_ExistsSubQuery_TOperationparamsList(cb.query());// for saving query-value.\r
137         registerExistsSubQuery(cb.query(), "OperationID", "OperationID", subQueryPropertyName);\r
138     }\r
139     abstract public String keepOperationid_ExistsSubQuery_TOperationparamsList(TOperationparamsCQ subQuery);\r
140 \r
141     /**\r
142      * Set up 'not exists' sub-query. {not exists (select OperationID from t_operationparams where ...)}\r
143      * @param subQuery The sub-query of Operationid_NotExistsSubQuery_TOperationparamsList for 'not exists'. (NotNull)\r
144      */\r
145     public void notExistsTOperationparamsList(SubQuery<TOperationparamsCB> subQuery) {\r
146         assertObjectNotNull("subQuery<TOperationparamsCB>", subQuery);\r
147         TOperationparamsCB cb = new TOperationparamsCB(); cb.xsetupForExistsSubQuery(); subQuery.query(cb);\r
148         String subQueryPropertyName = keepOperationid_NotExistsSubQuery_TOperationparamsList(cb.query());// for saving query-value.\r
149         registerNotExistsSubQuery(cb.query(), "OperationID", "OperationID", subQueryPropertyName);\r
150     }\r
151     abstract public String keepOperationid_NotExistsSubQuery_TOperationparamsList(TOperationparamsCQ subQuery);\r
152 \r
153     public void xderiveTOperationparamsList(String function, SubQuery<TOperationparamsCB> subQuery, String aliasName) {\r
154         assertObjectNotNull("subQuery<TOperationparamsCB>", subQuery);\r
155         TOperationparamsCB cb = new TOperationparamsCB(); cb.xsetupForDeriveReferrer(); subQuery.query(cb);\r
156         String subQueryPropertyName = keepOperationid_DeriveSubQuery_TOperationparamsList(cb.query());// for saving query-value.\r
157         registerDeriveSubQuery(function, cb.query(), "OperationID", "OperationID", subQueryPropertyName, aliasName);\r
158     }\r
159     abstract public String keepOperationid_DeriveSubQuery_TOperationparamsList(TOperationparamsCQ subQuery);\r
160 \r
161     /**\r
162      * IsNull(is null). And OnceRegistered.\r
163      */\r
164     public void setOperationid_IsNull() { regOperationid(CK_ISN, DUMMY_OBJECT); }\r
165 \r
166     /**\r
167      * IsNotNull(is not null). And OnceRegistered.\r
168      */\r
169     public void setOperationid_IsNotNull() { regOperationid(CK_ISNN, DUMMY_OBJECT); }\r
170 \r
171     protected void regOperationid(ConditionKey key, Object value) {\r
172         registerQuery(key, value, getCValueOperationid(), "OperationID", "Operationid", "operationid");\r
173     }\r
174     protected void registerInlineOperationid(ConditionKey key, Object value) {\r
175         registerInlineQuery(key, value, getCValueOperationid(), "OperationID", "Operationid", "operationid");\r
176     }\r
177     abstract protected ConditionValue getCValueOperationid();\r
178     \r
179     /**\r
180      * Equal(=). And NullIgnored, OnceRegistered. {INTEGER}\r
181      * @param objectId The value of objectId as equal.\r
182      */\r
183     public void setObjectId_Equal(java.lang.Integer objectId) {\r
184         regObjectId(CK_EQ, objectId);\r
185     }\r
186 \r
187     /**\r
188      * NotEqual(!=). And NullIgnored, OnceRegistered.\r
189      * @param objectId The value of objectId as notEqual.\r
190      */\r
191     public void setObjectId_NotEqual(java.lang.Integer objectId) {\r
192         regObjectId(CK_NE, objectId);\r
193     }\r
194 \r
195     /**\r
196      * GreaterThan(&gt;). And NullIgnored, OnceRegistered.\r
197      * @param objectId The value of objectId as greaterThan.\r
198      */\r
199     public void setObjectId_GreaterThan(java.lang.Integer objectId) {\r
200         regObjectId(CK_GT, objectId);\r
201     }\r
202 \r
203     /**\r
204      * LessThan(&lt;). And NullIgnored, OnceRegistered.\r
205      * @param objectId The value of objectId as lessThan.\r
206      */\r
207     public void setObjectId_LessThan(java.lang.Integer objectId) {\r
208         regObjectId(CK_LT, objectId);\r
209     }\r
210 \r
211     /**\r
212      * GreaterEqual(&gt;=). And NullIgnored, OnceRegistered.\r
213      * @param objectId The value of objectId as greaterEqual.\r
214      */\r
215     public void setObjectId_GreaterEqual(java.lang.Integer objectId) {\r
216         regObjectId(CK_GE, objectId);\r
217     }\r
218 \r
219     /**\r
220      * LessEqual(&lt;=). And NullIgnored, OnceRegistered.\r
221      * @param objectId The value of objectId as lessEqual.\r
222      */\r
223     public void setObjectId_LessEqual(java.lang.Integer objectId) {\r
224         regObjectId(CK_LE, objectId);\r
225     }\r
226 \r
227     /**\r
228      * InScope(in (1, 2)). And NullIgnored, NullElementIgnored, SeveralRegistered.\r
229      * @param objectIdList The collection of objectId as inScope.\r
230      */\r
231     public void setObjectId_InScope(Collection<java.lang.Integer> objectIdList) {\r
232         regObjectId(CK_INS, cTL(objectIdList));\r
233     }\r
234 \r
235     /**\r
236      * IsNull(is null). And OnceRegistered.\r
237      */\r
238     public void setObjectId_IsNull() { regObjectId(CK_ISN, DUMMY_OBJECT); }\r
239 \r
240     /**\r
241      * IsNotNull(is not null). And OnceRegistered.\r
242      */\r
243     public void setObjectId_IsNotNull() { regObjectId(CK_ISNN, DUMMY_OBJECT); }\r
244 \r
245     protected void regObjectId(ConditionKey key, Object value) {\r
246         registerQuery(key, value, getCValueObjectId(), "Object_ID", "ObjectId", "objectId");\r
247     }\r
248     protected void registerInlineObjectId(ConditionKey key, Object value) {\r
249         registerInlineQuery(key, value, getCValueObjectId(), "Object_ID", "ObjectId", "objectId");\r
250     }\r
251     abstract protected ConditionValue getCValueObjectId();\r
252 \r
253     /**\r
254      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
255      * @param name The value of name as equal.\r
256      */\r
257     public void setName_Equal(String name) {\r
258         regName(CK_EQ, fRES(name));\r
259     }\r
260 \r
261     /**\r
262      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
263      * @param name The value of name as notEqual.\r
264      */\r
265     public void setName_NotEqual(String name) {\r
266         regName(CK_NE, fRES(name));\r
267     }\r
268 \r
269     /**\r
270      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
271      * @param name The value of name as greaterThan.\r
272      */\r
273     public void setName_GreaterThan(String name) {\r
274         regName(CK_GT, fRES(name));\r
275     }\r
276 \r
277     /**\r
278      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
279      * @param name The value of name as lessThan.\r
280      */\r
281     public void setName_LessThan(String name) {\r
282         regName(CK_LT, fRES(name));\r
283     }\r
284 \r
285     /**\r
286      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
287      * @param name The value of name as greaterEqual.\r
288      */\r
289     public void setName_GreaterEqual(String name) {\r
290         regName(CK_GE, fRES(name));\r
291     }\r
292 \r
293     /**\r
294      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
295      * @param name The value of name as lessEqual.\r
296      */\r
297     public void setName_LessEqual(String name) {\r
298         regName(CK_LE, fRES(name));\r
299     }\r
300 \r
301     /**\r
302      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
303      * @param name The value of name as prefixSearch.\r
304      */\r
305     public void setName_PrefixSearch(String name) {\r
306         regName(CK_PS, fRES(name));\r
307     }\r
308 \r
309     /**\r
310      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
311      * @param name The value of name as likeSearch.\r
312      * @param likeSearchOption The option of like-search. (NotNull)\r
313      */\r
314     public void setName_LikeSearch(String name, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
315         registerLikeSearchQuery(CK_LS, fRES(name), getCValueName(), "Name", "Name", "name", likeSearchOption);\r
316     }\r
317 \r
318     /**\r
319      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
320      * @param nameList The collection of name as inScope.\r
321      */\r
322     public void setName_InScope(Collection<String> nameList) {\r
323         regName(CK_INS, cTL(nameList));\r
324     }\r
325 \r
326     /**\r
327      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
328      * @param name The collection of name as inScope.\r
329      * @param inScopeOption The option of in-scope. (NotNull)\r
330      */\r
331     public void setName_InScope(String name, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
332         registerInScopeQuery(CK_INS, fRES(name), getCValueName(), "Name", "Name", "name", inScopeOption);\r
333     }\r
334 \r
335     /**\r
336          * @param tConnectorCBquery Query.\r
337          * @deprecated Please use inScopeTConnectorBySourceroleList(subQuery) method.\r
338          */\r
339     public void setName_InScopeSubQuery_TConnectorBySourceroleList(TConnectorCQ tConnectorCBquery) {\r
340         String subQueryPropertyName = keepName_InScopeSubQuery_TConnectorBySourceroleList(tConnectorCBquery);// for saving query-value.\r
341         registerInScopeSubQuery(tConnectorCBquery, "Name", "SourceRole", subQueryPropertyName);\r
342     }\r
343     public void inScopeTConnectorBySourceroleList(SubQuery<TConnectorCB> subQuery) {\r
344         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
345         TConnectorCB cb = new TConnectorCB(); cb.xsetupForInScopeSubQuery(); subQuery.query(cb);\r
346         String subQueryPropertyName = keepName_InScopeSubQuery_TConnectorBySourceroleList(cb.query());// for saving query-value.\r
347         registerInScopeSubQuery(cb.query(), "Name", "SourceRole", subQueryPropertyName);\r
348     }\r
349     abstract public String keepName_InScopeSubQuery_TConnectorBySourceroleList(TConnectorCQ subQuery);\r
350 \r
351     /**\r
352          * @param tConnectorCBquery Query.\r
353          * @deprecated Please use inScopeTConnectorByDestroleList(subQuery) method.\r
354          */\r
355     public void setName_InScopeSubQuery_TConnectorByDestroleList(TConnectorCQ tConnectorCBquery) {\r
356         String subQueryPropertyName = keepName_InScopeSubQuery_TConnectorByDestroleList(tConnectorCBquery);// for saving query-value.\r
357         registerInScopeSubQuery(tConnectorCBquery, "Name", "DestRole", subQueryPropertyName);\r
358     }\r
359     public void inScopeTConnectorByDestroleList(SubQuery<TConnectorCB> subQuery) {\r
360         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
361         TConnectorCB cb = new TConnectorCB(); cb.xsetupForInScopeSubQuery(); subQuery.query(cb);\r
362         String subQueryPropertyName = keepName_InScopeSubQuery_TConnectorByDestroleList(cb.query());// for saving query-value.\r
363         registerInScopeSubQuery(cb.query(), "Name", "DestRole", subQueryPropertyName);\r
364     }\r
365     abstract public String keepName_InScopeSubQuery_TConnectorByDestroleList(TConnectorCQ subQuery);\r
366 \r
367     public void notInScopeTConnectorBySourceroleList(SubQuery<TConnectorCB> subQuery) {\r
368         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
369         TConnectorCB cb = new TConnectorCB(); cb.xsetupForInScopeSubQuery(); subQuery.query(cb);\r
370         String subQueryPropertyName = keepName_NotInScopeSubQuery_TConnectorBySourceroleList(cb.query());// for saving query-value.\r
371         registerNotInScopeSubQuery(cb.query(), "Name", "SourceRole", subQueryPropertyName);\r
372     }\r
373     abstract public String keepName_NotInScopeSubQuery_TConnectorBySourceroleList(TConnectorCQ subQuery);\r
374 \r
375     public void notInScopeTConnectorByDestroleList(SubQuery<TConnectorCB> subQuery) {\r
376         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
377         TConnectorCB cb = new TConnectorCB(); cb.xsetupForInScopeSubQuery(); subQuery.query(cb);\r
378         String subQueryPropertyName = keepName_NotInScopeSubQuery_TConnectorByDestroleList(cb.query());// for saving query-value.\r
379         registerNotInScopeSubQuery(cb.query(), "Name", "DestRole", subQueryPropertyName);\r
380     }\r
381     abstract public String keepName_NotInScopeSubQuery_TConnectorByDestroleList(TConnectorCQ subQuery);\r
382 \r
383     /**\r
384          * @param tConnectorCBquery Query.\r
385          * @deprecated Please use existsTConnectorBySourceroleList(subQuery) method.\r
386          */\r
387     public void setName_ExistsSubQuery_TConnectorBySourceroleList(TConnectorCQ tConnectorCBquery) {\r
388         String subQueryPropertyName = keepName_ExistsSubQuery_TConnectorBySourceroleList(tConnectorCBquery);// for saving query-value.\r
389         registerExistsSubQuery(tConnectorCBquery, "Name", "SourceRole", subQueryPropertyName);\r
390     }\r
391     /**\r
392      * Set up 'exists' sub-query. {exists (select SourceRole from t_connector where ...)}\r
393      * @param subQuery The sub-query of Name_ExistsSubQuery_TConnectorBySourceroleList for 'exists'. (NotNull)\r
394      */\r
395     public void existsTConnectorBySourceroleList(SubQuery<TConnectorCB> subQuery) {\r
396         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
397         TConnectorCB cb = new TConnectorCB(); cb.xsetupForExistsSubQuery(); subQuery.query(cb);\r
398         String subQueryPropertyName = keepName_ExistsSubQuery_TConnectorBySourceroleList(cb.query());// for saving query-value.\r
399         registerExistsSubQuery(cb.query(), "Name", "SourceRole", subQueryPropertyName);\r
400     }\r
401     abstract public String keepName_ExistsSubQuery_TConnectorBySourceroleList(TConnectorCQ subQuery);\r
402 \r
403     /**\r
404          * @param tConnectorCBquery Query.\r
405          * @deprecated Please use existsTConnectorByDestroleList(subQuery) method.\r
406          */\r
407     public void setName_ExistsSubQuery_TConnectorByDestroleList(TConnectorCQ tConnectorCBquery) {\r
408         String subQueryPropertyName = keepName_ExistsSubQuery_TConnectorByDestroleList(tConnectorCBquery);// for saving query-value.\r
409         registerExistsSubQuery(tConnectorCBquery, "Name", "DestRole", subQueryPropertyName);\r
410     }\r
411     /**\r
412      * Set up 'exists' sub-query. {exists (select DestRole from t_connector where ...)}\r
413      * @param subQuery The sub-query of Name_ExistsSubQuery_TConnectorByDestroleList for 'exists'. (NotNull)\r
414      */\r
415     public void existsTConnectorByDestroleList(SubQuery<TConnectorCB> subQuery) {\r
416         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
417         TConnectorCB cb = new TConnectorCB(); cb.xsetupForExistsSubQuery(); subQuery.query(cb);\r
418         String subQueryPropertyName = keepName_ExistsSubQuery_TConnectorByDestroleList(cb.query());// for saving query-value.\r
419         registerExistsSubQuery(cb.query(), "Name", "DestRole", subQueryPropertyName);\r
420     }\r
421     abstract public String keepName_ExistsSubQuery_TConnectorByDestroleList(TConnectorCQ subQuery);\r
422 \r
423     /**\r
424      * Set up 'not exists' sub-query. {not exists (select SourceRole from t_connector where ...)}\r
425      * @param subQuery The sub-query of Name_NotExistsSubQuery_TConnectorBySourceroleList for 'not exists'. (NotNull)\r
426      */\r
427     public void notExistsTConnectorBySourceroleList(SubQuery<TConnectorCB> subQuery) {\r
428         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
429         TConnectorCB cb = new TConnectorCB(); cb.xsetupForExistsSubQuery(); subQuery.query(cb);\r
430         String subQueryPropertyName = keepName_NotExistsSubQuery_TConnectorBySourceroleList(cb.query());// for saving query-value.\r
431         registerNotExistsSubQuery(cb.query(), "Name", "SourceRole", subQueryPropertyName);\r
432     }\r
433     abstract public String keepName_NotExistsSubQuery_TConnectorBySourceroleList(TConnectorCQ subQuery);\r
434 \r
435     /**\r
436      * Set up 'not exists' sub-query. {not exists (select DestRole from t_connector where ...)}\r
437      * @param subQuery The sub-query of Name_NotExistsSubQuery_TConnectorByDestroleList for 'not exists'. (NotNull)\r
438      */\r
439     public void notExistsTConnectorByDestroleList(SubQuery<TConnectorCB> subQuery) {\r
440         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
441         TConnectorCB cb = new TConnectorCB(); cb.xsetupForExistsSubQuery(); subQuery.query(cb);\r
442         String subQueryPropertyName = keepName_NotExistsSubQuery_TConnectorByDestroleList(cb.query());// for saving query-value.\r
443         registerNotExistsSubQuery(cb.query(), "Name", "DestRole", subQueryPropertyName);\r
444     }\r
445     abstract public String keepName_NotExistsSubQuery_TConnectorByDestroleList(TConnectorCQ subQuery);\r
446 \r
447     public void xderiveTConnectorBySourceroleList(String function, SubQuery<TConnectorCB> subQuery, String aliasName) {\r
448         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
449         TConnectorCB cb = new TConnectorCB(); cb.xsetupForDeriveReferrer(); subQuery.query(cb);\r
450         String subQueryPropertyName = keepName_DeriveSubQuery_TConnectorBySourceroleList(cb.query());// for saving query-value.\r
451         registerDeriveSubQuery(function, cb.query(), "Name", "SourceRole", subQueryPropertyName, aliasName);\r
452     }\r
453     abstract public String keepName_DeriveSubQuery_TConnectorBySourceroleList(TConnectorCQ subQuery);\r
454 \r
455     public void xderiveTConnectorByDestroleList(String function, SubQuery<TConnectorCB> subQuery, String aliasName) {\r
456         assertObjectNotNull("subQuery<TConnectorCB>", subQuery);\r
457         TConnectorCB cb = new TConnectorCB(); cb.xsetupForDeriveReferrer(); subQuery.query(cb);\r
458         String subQueryPropertyName = keepName_DeriveSubQuery_TConnectorByDestroleList(cb.query());// for saving query-value.\r
459         registerDeriveSubQuery(function, cb.query(), "Name", "DestRole", subQueryPropertyName, aliasName);\r
460     }\r
461     abstract public String keepName_DeriveSubQuery_TConnectorByDestroleList(TConnectorCQ subQuery);\r
462 \r
463     /**\r
464      * IsNull(is null). And OnceRegistered.\r
465      */\r
466     public void setName_IsNull() { regName(CK_ISN, DUMMY_OBJECT); }\r
467 \r
468     /**\r
469      * IsNotNull(is not null). And OnceRegistered.\r
470      */\r
471     public void setName_IsNotNull() { regName(CK_ISNN, DUMMY_OBJECT); }\r
472 \r
473     protected void regName(ConditionKey key, Object value) {\r
474         registerQuery(key, value, getCValueName(), "Name", "Name", "name");\r
475     }\r
476     protected void registerInlineName(ConditionKey key, Object value) {\r
477         registerInlineQuery(key, value, getCValueName(), "Name", "Name", "name");\r
478     }\r
479     abstract protected ConditionValue getCValueName();\r
480 \r
481     /**\r
482      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
483      * @param scope The value of scope as equal.\r
484      */\r
485     public void setScope_Equal(String scope) {\r
486         regScope(CK_EQ, fRES(scope));\r
487     }\r
488 \r
489     /**\r
490      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
491      * @param scope The value of scope as notEqual.\r
492      */\r
493     public void setScope_NotEqual(String scope) {\r
494         regScope(CK_NE, fRES(scope));\r
495     }\r
496 \r
497     /**\r
498      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
499      * @param scope The value of scope as greaterThan.\r
500      */\r
501     public void setScope_GreaterThan(String scope) {\r
502         regScope(CK_GT, fRES(scope));\r
503     }\r
504 \r
505     /**\r
506      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
507      * @param scope The value of scope as lessThan.\r
508      */\r
509     public void setScope_LessThan(String scope) {\r
510         regScope(CK_LT, fRES(scope));\r
511     }\r
512 \r
513     /**\r
514      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
515      * @param scope The value of scope as greaterEqual.\r
516      */\r
517     public void setScope_GreaterEqual(String scope) {\r
518         regScope(CK_GE, fRES(scope));\r
519     }\r
520 \r
521     /**\r
522      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
523      * @param scope The value of scope as lessEqual.\r
524      */\r
525     public void setScope_LessEqual(String scope) {\r
526         regScope(CK_LE, fRES(scope));\r
527     }\r
528 \r
529     /**\r
530      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
531      * @param scope The value of scope as prefixSearch.\r
532      */\r
533     public void setScope_PrefixSearch(String scope) {\r
534         regScope(CK_PS, fRES(scope));\r
535     }\r
536 \r
537     /**\r
538      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
539      * @param scope The value of scope as likeSearch.\r
540      * @param likeSearchOption The option of like-search. (NotNull)\r
541      */\r
542     public void setScope_LikeSearch(String scope, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
543         registerLikeSearchQuery(CK_LS, fRES(scope), getCValueScope(), "Scope", "Scope", "scope", likeSearchOption);\r
544     }\r
545 \r
546     /**\r
547      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
548      * @param scopeList The collection of scope as inScope.\r
549      */\r
550     public void setScope_InScope(Collection<String> scopeList) {\r
551         regScope(CK_INS, cTL(scopeList));\r
552     }\r
553 \r
554     /**\r
555      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
556      * @param scope The collection of scope as inScope.\r
557      * @param inScopeOption The option of in-scope. (NotNull)\r
558      */\r
559     public void setScope_InScope(String scope, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
560         registerInScopeQuery(CK_INS, fRES(scope), getCValueScope(), "Scope", "Scope", "scope", inScopeOption);\r
561     }\r
562 \r
563     /**\r
564      * IsNull(is null). And OnceRegistered.\r
565      */\r
566     public void setScope_IsNull() { regScope(CK_ISN, DUMMY_OBJECT); }\r
567 \r
568     /**\r
569      * IsNotNull(is not null). And OnceRegistered.\r
570      */\r
571     public void setScope_IsNotNull() { regScope(CK_ISNN, DUMMY_OBJECT); }\r
572 \r
573     protected void regScope(ConditionKey key, Object value) {\r
574         registerQuery(key, value, getCValueScope(), "Scope", "Scope", "scope");\r
575     }\r
576     protected void registerInlineScope(ConditionKey key, Object value) {\r
577         registerInlineQuery(key, value, getCValueScope(), "Scope", "Scope", "scope");\r
578     }\r
579     abstract protected ConditionValue getCValueScope();\r
580 \r
581     /**\r
582      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
583      * @param type The value of type as equal.\r
584      */\r
585     public void setType_Equal(String type) {\r
586         regType(CK_EQ, fRES(type));\r
587     }\r
588 \r
589     /**\r
590      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
591      * @param type The value of type as notEqual.\r
592      */\r
593     public void setType_NotEqual(String type) {\r
594         regType(CK_NE, fRES(type));\r
595     }\r
596 \r
597     /**\r
598      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
599      * @param type The value of type as greaterThan.\r
600      */\r
601     public void setType_GreaterThan(String type) {\r
602         regType(CK_GT, fRES(type));\r
603     }\r
604 \r
605     /**\r
606      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
607      * @param type The value of type as lessThan.\r
608      */\r
609     public void setType_LessThan(String type) {\r
610         regType(CK_LT, fRES(type));\r
611     }\r
612 \r
613     /**\r
614      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
615      * @param type The value of type as greaterEqual.\r
616      */\r
617     public void setType_GreaterEqual(String type) {\r
618         regType(CK_GE, fRES(type));\r
619     }\r
620 \r
621     /**\r
622      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
623      * @param type The value of type as lessEqual.\r
624      */\r
625     public void setType_LessEqual(String type) {\r
626         regType(CK_LE, fRES(type));\r
627     }\r
628 \r
629     /**\r
630      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
631      * @param type The value of type as prefixSearch.\r
632      */\r
633     public void setType_PrefixSearch(String type) {\r
634         regType(CK_PS, fRES(type));\r
635     }\r
636 \r
637     /**\r
638      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
639      * @param type The value of type as likeSearch.\r
640      * @param likeSearchOption The option of like-search. (NotNull)\r
641      */\r
642     public void setType_LikeSearch(String type, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
643         registerLikeSearchQuery(CK_LS, fRES(type), getCValueType(), "Type", "Type", "type", likeSearchOption);\r
644     }\r
645 \r
646     /**\r
647      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
648      * @param typeList The collection of type as inScope.\r
649      */\r
650     public void setType_InScope(Collection<String> typeList) {\r
651         regType(CK_INS, cTL(typeList));\r
652     }\r
653 \r
654     /**\r
655      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
656      * @param type The collection of type as inScope.\r
657      * @param inScopeOption The option of in-scope. (NotNull)\r
658      */\r
659     public void setType_InScope(String type, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
660         registerInScopeQuery(CK_INS, fRES(type), getCValueType(), "Type", "Type", "type", inScopeOption);\r
661     }\r
662 \r
663     /**\r
664      * IsNull(is null). And OnceRegistered.\r
665      */\r
666     public void setType_IsNull() { regType(CK_ISN, DUMMY_OBJECT); }\r
667 \r
668     /**\r
669      * IsNotNull(is not null). And OnceRegistered.\r
670      */\r
671     public void setType_IsNotNull() { regType(CK_ISNN, DUMMY_OBJECT); }\r
672 \r
673     protected void regType(ConditionKey key, Object value) {\r
674         registerQuery(key, value, getCValueType(), "Type", "Type", "type");\r
675     }\r
676     protected void registerInlineType(ConditionKey key, Object value) {\r
677         registerInlineQuery(key, value, getCValueType(), "Type", "Type", "type");\r
678     }\r
679     abstract protected ConditionValue getCValueType();\r
680 \r
681     /**\r
682      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(1)}\r
683      * @param returnarray The value of returnarray as equal.\r
684      */\r
685     public void setReturnarray_Equal(String returnarray) {\r
686         regReturnarray(CK_EQ, fRES(returnarray));\r
687     }\r
688 \r
689     /**\r
690      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
691      * @param returnarray The value of returnarray as notEqual.\r
692      */\r
693     public void setReturnarray_NotEqual(String returnarray) {\r
694         regReturnarray(CK_NE, fRES(returnarray));\r
695     }\r
696 \r
697     /**\r
698      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
699      * @param returnarray The value of returnarray as greaterThan.\r
700      */\r
701     public void setReturnarray_GreaterThan(String returnarray) {\r
702         regReturnarray(CK_GT, fRES(returnarray));\r
703     }\r
704 \r
705     /**\r
706      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
707      * @param returnarray The value of returnarray as lessThan.\r
708      */\r
709     public void setReturnarray_LessThan(String returnarray) {\r
710         regReturnarray(CK_LT, fRES(returnarray));\r
711     }\r
712 \r
713     /**\r
714      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
715      * @param returnarray The value of returnarray as greaterEqual.\r
716      */\r
717     public void setReturnarray_GreaterEqual(String returnarray) {\r
718         regReturnarray(CK_GE, fRES(returnarray));\r
719     }\r
720 \r
721     /**\r
722      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
723      * @param returnarray The value of returnarray as lessEqual.\r
724      */\r
725     public void setReturnarray_LessEqual(String returnarray) {\r
726         regReturnarray(CK_LE, fRES(returnarray));\r
727     }\r
728 \r
729     /**\r
730      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
731      * @param returnarray The value of returnarray as prefixSearch.\r
732      */\r
733     public void setReturnarray_PrefixSearch(String returnarray) {\r
734         regReturnarray(CK_PS, fRES(returnarray));\r
735     }\r
736 \r
737     /**\r
738      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
739      * @param returnarray The value of returnarray as likeSearch.\r
740      * @param likeSearchOption The option of like-search. (NotNull)\r
741      */\r
742     public void setReturnarray_LikeSearch(String returnarray, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
743         registerLikeSearchQuery(CK_LS, fRES(returnarray), getCValueReturnarray(), "ReturnArray", "Returnarray", "returnarray", likeSearchOption);\r
744     }\r
745 \r
746     /**\r
747      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
748      * @param returnarrayList The collection of returnarray as inScope.\r
749      */\r
750     public void setReturnarray_InScope(Collection<String> returnarrayList) {\r
751         regReturnarray(CK_INS, cTL(returnarrayList));\r
752     }\r
753 \r
754     /**\r
755      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
756      * @param returnarray The collection of returnarray as inScope.\r
757      * @param inScopeOption The option of in-scope. (NotNull)\r
758      */\r
759     public void setReturnarray_InScope(String returnarray, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
760         registerInScopeQuery(CK_INS, fRES(returnarray), getCValueReturnarray(), "ReturnArray", "Returnarray", "returnarray", inScopeOption);\r
761     }\r
762 \r
763     /**\r
764      * IsNull(is null). And OnceRegistered.\r
765      */\r
766     public void setReturnarray_IsNull() { regReturnarray(CK_ISN, DUMMY_OBJECT); }\r
767 \r
768     /**\r
769      * IsNotNull(is not null). And OnceRegistered.\r
770      */\r
771     public void setReturnarray_IsNotNull() { regReturnarray(CK_ISNN, DUMMY_OBJECT); }\r
772 \r
773     protected void regReturnarray(ConditionKey key, Object value) {\r
774         registerQuery(key, value, getCValueReturnarray(), "ReturnArray", "Returnarray", "returnarray");\r
775     }\r
776     protected void registerInlineReturnarray(ConditionKey key, Object value) {\r
777         registerInlineQuery(key, value, getCValueReturnarray(), "ReturnArray", "Returnarray", "returnarray");\r
778     }\r
779     abstract protected ConditionValue getCValueReturnarray();\r
780 \r
781     /**\r
782      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
783      * @param stereotype The value of stereotype as equal.\r
784      */\r
785     public void setStereotype_Equal(String stereotype) {\r
786         regStereotype(CK_EQ, fRES(stereotype));\r
787     }\r
788 \r
789     /**\r
790      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
791      * @param stereotype The value of stereotype as notEqual.\r
792      */\r
793     public void setStereotype_NotEqual(String stereotype) {\r
794         regStereotype(CK_NE, fRES(stereotype));\r
795     }\r
796 \r
797     /**\r
798      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
799      * @param stereotype The value of stereotype as greaterThan.\r
800      */\r
801     public void setStereotype_GreaterThan(String stereotype) {\r
802         regStereotype(CK_GT, fRES(stereotype));\r
803     }\r
804 \r
805     /**\r
806      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
807      * @param stereotype The value of stereotype as lessThan.\r
808      */\r
809     public void setStereotype_LessThan(String stereotype) {\r
810         regStereotype(CK_LT, fRES(stereotype));\r
811     }\r
812 \r
813     /**\r
814      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
815      * @param stereotype The value of stereotype as greaterEqual.\r
816      */\r
817     public void setStereotype_GreaterEqual(String stereotype) {\r
818         regStereotype(CK_GE, fRES(stereotype));\r
819     }\r
820 \r
821     /**\r
822      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
823      * @param stereotype The value of stereotype as lessEqual.\r
824      */\r
825     public void setStereotype_LessEqual(String stereotype) {\r
826         regStereotype(CK_LE, fRES(stereotype));\r
827     }\r
828 \r
829     /**\r
830      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
831      * @param stereotype The value of stereotype as prefixSearch.\r
832      */\r
833     public void setStereotype_PrefixSearch(String stereotype) {\r
834         regStereotype(CK_PS, fRES(stereotype));\r
835     }\r
836 \r
837     /**\r
838      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
839      * @param stereotype The value of stereotype as likeSearch.\r
840      * @param likeSearchOption The option of like-search. (NotNull)\r
841      */\r
842     public void setStereotype_LikeSearch(String stereotype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
843         registerLikeSearchQuery(CK_LS, fRES(stereotype), getCValueStereotype(), "Stereotype", "Stereotype", "stereotype", likeSearchOption);\r
844     }\r
845 \r
846     /**\r
847      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
848      * @param stereotypeList The collection of stereotype as inScope.\r
849      */\r
850     public void setStereotype_InScope(Collection<String> stereotypeList) {\r
851         regStereotype(CK_INS, cTL(stereotypeList));\r
852     }\r
853 \r
854     /**\r
855      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
856      * @param stereotype The collection of stereotype as inScope.\r
857      * @param inScopeOption The option of in-scope. (NotNull)\r
858      */\r
859     public void setStereotype_InScope(String stereotype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
860         registerInScopeQuery(CK_INS, fRES(stereotype), getCValueStereotype(), "Stereotype", "Stereotype", "stereotype", inScopeOption);\r
861     }\r
862 \r
863     /**\r
864      * IsNull(is null). And OnceRegistered.\r
865      */\r
866     public void setStereotype_IsNull() { regStereotype(CK_ISN, DUMMY_OBJECT); }\r
867 \r
868     /**\r
869      * IsNotNull(is not null). And OnceRegistered.\r
870      */\r
871     public void setStereotype_IsNotNull() { regStereotype(CK_ISNN, DUMMY_OBJECT); }\r
872 \r
873     protected void regStereotype(ConditionKey key, Object value) {\r
874         registerQuery(key, value, getCValueStereotype(), "Stereotype", "Stereotype", "stereotype");\r
875     }\r
876     protected void registerInlineStereotype(ConditionKey key, Object value) {\r
877         registerInlineQuery(key, value, getCValueStereotype(), "Stereotype", "Stereotype", "stereotype");\r
878     }\r
879     abstract protected ConditionValue getCValueStereotype();\r
880 \r
881     /**\r
882      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(1)}\r
883      * @param isstatic The value of isstatic as equal.\r
884      */\r
885     public void setIsstatic_Equal(String isstatic) {\r
886         regIsstatic(CK_EQ, fRES(isstatic));\r
887     }\r
888 \r
889     /**\r
890      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
891      * @param isstatic The value of isstatic as notEqual.\r
892      */\r
893     public void setIsstatic_NotEqual(String isstatic) {\r
894         regIsstatic(CK_NE, fRES(isstatic));\r
895     }\r
896 \r
897     /**\r
898      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
899      * @param isstatic The value of isstatic as greaterThan.\r
900      */\r
901     public void setIsstatic_GreaterThan(String isstatic) {\r
902         regIsstatic(CK_GT, fRES(isstatic));\r
903     }\r
904 \r
905     /**\r
906      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
907      * @param isstatic The value of isstatic as lessThan.\r
908      */\r
909     public void setIsstatic_LessThan(String isstatic) {\r
910         regIsstatic(CK_LT, fRES(isstatic));\r
911     }\r
912 \r
913     /**\r
914      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
915      * @param isstatic The value of isstatic as greaterEqual.\r
916      */\r
917     public void setIsstatic_GreaterEqual(String isstatic) {\r
918         regIsstatic(CK_GE, fRES(isstatic));\r
919     }\r
920 \r
921     /**\r
922      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
923      * @param isstatic The value of isstatic as lessEqual.\r
924      */\r
925     public void setIsstatic_LessEqual(String isstatic) {\r
926         regIsstatic(CK_LE, fRES(isstatic));\r
927     }\r
928 \r
929     /**\r
930      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
931      * @param isstatic The value of isstatic as prefixSearch.\r
932      */\r
933     public void setIsstatic_PrefixSearch(String isstatic) {\r
934         regIsstatic(CK_PS, fRES(isstatic));\r
935     }\r
936 \r
937     /**\r
938      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
939      * @param isstatic The value of isstatic as likeSearch.\r
940      * @param likeSearchOption The option of like-search. (NotNull)\r
941      */\r
942     public void setIsstatic_LikeSearch(String isstatic, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
943         registerLikeSearchQuery(CK_LS, fRES(isstatic), getCValueIsstatic(), "IsStatic", "Isstatic", "isstatic", likeSearchOption);\r
944     }\r
945 \r
946     /**\r
947      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
948      * @param isstaticList The collection of isstatic as inScope.\r
949      */\r
950     public void setIsstatic_InScope(Collection<String> isstaticList) {\r
951         regIsstatic(CK_INS, cTL(isstaticList));\r
952     }\r
953 \r
954     /**\r
955      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
956      * @param isstatic The collection of isstatic as inScope.\r
957      * @param inScopeOption The option of in-scope. (NotNull)\r
958      */\r
959     public void setIsstatic_InScope(String isstatic, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
960         registerInScopeQuery(CK_INS, fRES(isstatic), getCValueIsstatic(), "IsStatic", "Isstatic", "isstatic", inScopeOption);\r
961     }\r
962 \r
963     /**\r
964      * IsNull(is null). And OnceRegistered.\r
965      */\r
966     public void setIsstatic_IsNull() { regIsstatic(CK_ISN, DUMMY_OBJECT); }\r
967 \r
968     /**\r
969      * IsNotNull(is not null). And OnceRegistered.\r
970      */\r
971     public void setIsstatic_IsNotNull() { regIsstatic(CK_ISNN, DUMMY_OBJECT); }\r
972 \r
973     protected void regIsstatic(ConditionKey key, Object value) {\r
974         registerQuery(key, value, getCValueIsstatic(), "IsStatic", "Isstatic", "isstatic");\r
975     }\r
976     protected void registerInlineIsstatic(ConditionKey key, Object value) {\r
977         registerInlineQuery(key, value, getCValueIsstatic(), "IsStatic", "Isstatic", "isstatic");\r
978     }\r
979     abstract protected ConditionValue getCValueIsstatic();\r
980 \r
981     /**\r
982      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
983      * @param concurrency The value of concurrency as equal.\r
984      */\r
985     public void setConcurrency_Equal(String concurrency) {\r
986         regConcurrency(CK_EQ, fRES(concurrency));\r
987     }\r
988 \r
989     /**\r
990      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
991      * @param concurrency The value of concurrency as notEqual.\r
992      */\r
993     public void setConcurrency_NotEqual(String concurrency) {\r
994         regConcurrency(CK_NE, fRES(concurrency));\r
995     }\r
996 \r
997     /**\r
998      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
999      * @param concurrency The value of concurrency as greaterThan.\r
1000      */\r
1001     public void setConcurrency_GreaterThan(String concurrency) {\r
1002         regConcurrency(CK_GT, fRES(concurrency));\r
1003     }\r
1004 \r
1005     /**\r
1006      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1007      * @param concurrency The value of concurrency as lessThan.\r
1008      */\r
1009     public void setConcurrency_LessThan(String concurrency) {\r
1010         regConcurrency(CK_LT, fRES(concurrency));\r
1011     }\r
1012 \r
1013     /**\r
1014      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1015      * @param concurrency The value of concurrency as greaterEqual.\r
1016      */\r
1017     public void setConcurrency_GreaterEqual(String concurrency) {\r
1018         regConcurrency(CK_GE, fRES(concurrency));\r
1019     }\r
1020 \r
1021     /**\r
1022      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1023      * @param concurrency The value of concurrency as lessEqual.\r
1024      */\r
1025     public void setConcurrency_LessEqual(String concurrency) {\r
1026         regConcurrency(CK_LE, fRES(concurrency));\r
1027     }\r
1028 \r
1029     /**\r
1030      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1031      * @param concurrency The value of concurrency as prefixSearch.\r
1032      */\r
1033     public void setConcurrency_PrefixSearch(String concurrency) {\r
1034         regConcurrency(CK_PS, fRES(concurrency));\r
1035     }\r
1036 \r
1037     /**\r
1038      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1039      * @param concurrency The value of concurrency as likeSearch.\r
1040      * @param likeSearchOption The option of like-search. (NotNull)\r
1041      */\r
1042     public void setConcurrency_LikeSearch(String concurrency, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1043         registerLikeSearchQuery(CK_LS, fRES(concurrency), getCValueConcurrency(), "Concurrency", "Concurrency", "concurrency", likeSearchOption);\r
1044     }\r
1045 \r
1046     /**\r
1047      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1048      * @param concurrencyList The collection of concurrency as inScope.\r
1049      */\r
1050     public void setConcurrency_InScope(Collection<String> concurrencyList) {\r
1051         regConcurrency(CK_INS, cTL(concurrencyList));\r
1052     }\r
1053 \r
1054     /**\r
1055      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1056      * @param concurrency The collection of concurrency as inScope.\r
1057      * @param inScopeOption The option of in-scope. (NotNull)\r
1058      */\r
1059     public void setConcurrency_InScope(String concurrency, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1060         registerInScopeQuery(CK_INS, fRES(concurrency), getCValueConcurrency(), "Concurrency", "Concurrency", "concurrency", inScopeOption);\r
1061     }\r
1062 \r
1063     /**\r
1064      * IsNull(is null). And OnceRegistered.\r
1065      */\r
1066     public void setConcurrency_IsNull() { regConcurrency(CK_ISN, DUMMY_OBJECT); }\r
1067 \r
1068     /**\r
1069      * IsNotNull(is not null). And OnceRegistered.\r
1070      */\r
1071     public void setConcurrency_IsNotNull() { regConcurrency(CK_ISNN, DUMMY_OBJECT); }\r
1072 \r
1073     protected void regConcurrency(ConditionKey key, Object value) {\r
1074         registerQuery(key, value, getCValueConcurrency(), "Concurrency", "Concurrency", "concurrency");\r
1075     }\r
1076     protected void registerInlineConcurrency(ConditionKey key, Object value) {\r
1077         registerInlineQuery(key, value, getCValueConcurrency(), "Concurrency", "Concurrency", "concurrency");\r
1078     }\r
1079     abstract protected ConditionValue getCValueConcurrency();\r
1080 \r
1081     /**\r
1082      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
1083      * @param notes The value of notes as equal.\r
1084      */\r
1085     public void setNotes_Equal(String notes) {\r
1086         regNotes(CK_EQ, fRES(notes));\r
1087     }\r
1088 \r
1089     /**\r
1090      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
1091      * @param notes The value of notes as notEqual.\r
1092      */\r
1093     public void setNotes_NotEqual(String notes) {\r
1094         regNotes(CK_NE, fRES(notes));\r
1095     }\r
1096 \r
1097     /**\r
1098      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
1099      * @param notes The value of notes as greaterThan.\r
1100      */\r
1101     public void setNotes_GreaterThan(String notes) {\r
1102         regNotes(CK_GT, fRES(notes));\r
1103     }\r
1104 \r
1105     /**\r
1106      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1107      * @param notes The value of notes as lessThan.\r
1108      */\r
1109     public void setNotes_LessThan(String notes) {\r
1110         regNotes(CK_LT, fRES(notes));\r
1111     }\r
1112 \r
1113     /**\r
1114      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1115      * @param notes The value of notes as greaterEqual.\r
1116      */\r
1117     public void setNotes_GreaterEqual(String notes) {\r
1118         regNotes(CK_GE, fRES(notes));\r
1119     }\r
1120 \r
1121     /**\r
1122      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1123      * @param notes The value of notes as lessEqual.\r
1124      */\r
1125     public void setNotes_LessEqual(String notes) {\r
1126         regNotes(CK_LE, fRES(notes));\r
1127     }\r
1128 \r
1129     /**\r
1130      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1131      * @param notes The value of notes as prefixSearch.\r
1132      */\r
1133     public void setNotes_PrefixSearch(String notes) {\r
1134         regNotes(CK_PS, fRES(notes));\r
1135     }\r
1136 \r
1137     /**\r
1138      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1139      * @param notes The value of notes as likeSearch.\r
1140      * @param likeSearchOption The option of like-search. (NotNull)\r
1141      */\r
1142     public void setNotes_LikeSearch(String notes, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1143         registerLikeSearchQuery(CK_LS, fRES(notes), getCValueNotes(), "Notes", "Notes", "notes", likeSearchOption);\r
1144     }\r
1145 \r
1146     /**\r
1147      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1148      * @param notesList The collection of notes as inScope.\r
1149      */\r
1150     public void setNotes_InScope(Collection<String> notesList) {\r
1151         regNotes(CK_INS, cTL(notesList));\r
1152     }\r
1153 \r
1154     /**\r
1155      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1156      * @param notes The collection of notes as inScope.\r
1157      * @param inScopeOption The option of in-scope. (NotNull)\r
1158      */\r
1159     public void setNotes_InScope(String notes, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1160         registerInScopeQuery(CK_INS, fRES(notes), getCValueNotes(), "Notes", "Notes", "notes", inScopeOption);\r
1161     }\r
1162 \r
1163     /**\r
1164      * IsNull(is null). And OnceRegistered.\r
1165      */\r
1166     public void setNotes_IsNull() { regNotes(CK_ISN, DUMMY_OBJECT); }\r
1167 \r
1168     /**\r
1169      * IsNotNull(is not null). And OnceRegistered.\r
1170      */\r
1171     public void setNotes_IsNotNull() { regNotes(CK_ISNN, DUMMY_OBJECT); }\r
1172 \r
1173     protected void regNotes(ConditionKey key, Object value) {\r
1174         registerQuery(key, value, getCValueNotes(), "Notes", "Notes", "notes");\r
1175     }\r
1176     protected void registerInlineNotes(ConditionKey key, Object value) {\r
1177         registerInlineQuery(key, value, getCValueNotes(), "Notes", "Notes", "notes");\r
1178     }\r
1179     abstract protected ConditionValue getCValueNotes();\r
1180 \r
1181     /**\r
1182      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
1183      * @param behaviour The value of behaviour as equal.\r
1184      */\r
1185     public void setBehaviour_Equal(String behaviour) {\r
1186         regBehaviour(CK_EQ, fRES(behaviour));\r
1187     }\r
1188 \r
1189     /**\r
1190      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
1191      * @param behaviour The value of behaviour as notEqual.\r
1192      */\r
1193     public void setBehaviour_NotEqual(String behaviour) {\r
1194         regBehaviour(CK_NE, fRES(behaviour));\r
1195     }\r
1196 \r
1197     /**\r
1198      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
1199      * @param behaviour The value of behaviour as greaterThan.\r
1200      */\r
1201     public void setBehaviour_GreaterThan(String behaviour) {\r
1202         regBehaviour(CK_GT, fRES(behaviour));\r
1203     }\r
1204 \r
1205     /**\r
1206      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1207      * @param behaviour The value of behaviour as lessThan.\r
1208      */\r
1209     public void setBehaviour_LessThan(String behaviour) {\r
1210         regBehaviour(CK_LT, fRES(behaviour));\r
1211     }\r
1212 \r
1213     /**\r
1214      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1215      * @param behaviour The value of behaviour as greaterEqual.\r
1216      */\r
1217     public void setBehaviour_GreaterEqual(String behaviour) {\r
1218         regBehaviour(CK_GE, fRES(behaviour));\r
1219     }\r
1220 \r
1221     /**\r
1222      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1223      * @param behaviour The value of behaviour as lessEqual.\r
1224      */\r
1225     public void setBehaviour_LessEqual(String behaviour) {\r
1226         regBehaviour(CK_LE, fRES(behaviour));\r
1227     }\r
1228 \r
1229     /**\r
1230      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1231      * @param behaviour The value of behaviour as prefixSearch.\r
1232      */\r
1233     public void setBehaviour_PrefixSearch(String behaviour) {\r
1234         regBehaviour(CK_PS, fRES(behaviour));\r
1235     }\r
1236 \r
1237     /**\r
1238      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1239      * @param behaviour The value of behaviour as likeSearch.\r
1240      * @param likeSearchOption The option of like-search. (NotNull)\r
1241      */\r
1242     public void setBehaviour_LikeSearch(String behaviour, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1243         registerLikeSearchQuery(CK_LS, fRES(behaviour), getCValueBehaviour(), "Behaviour", "Behaviour", "behaviour", likeSearchOption);\r
1244     }\r
1245 \r
1246     /**\r
1247      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1248      * @param behaviourList The collection of behaviour as inScope.\r
1249      */\r
1250     public void setBehaviour_InScope(Collection<String> behaviourList) {\r
1251         regBehaviour(CK_INS, cTL(behaviourList));\r
1252     }\r
1253 \r
1254     /**\r
1255      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1256      * @param behaviour The collection of behaviour as inScope.\r
1257      * @param inScopeOption The option of in-scope. (NotNull)\r
1258      */\r
1259     public void setBehaviour_InScope(String behaviour, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1260         registerInScopeQuery(CK_INS, fRES(behaviour), getCValueBehaviour(), "Behaviour", "Behaviour", "behaviour", inScopeOption);\r
1261     }\r
1262 \r
1263     /**\r
1264      * IsNull(is null). And OnceRegistered.\r
1265      */\r
1266     public void setBehaviour_IsNull() { regBehaviour(CK_ISN, DUMMY_OBJECT); }\r
1267 \r
1268     /**\r
1269      * IsNotNull(is not null). And OnceRegistered.\r
1270      */\r
1271     public void setBehaviour_IsNotNull() { regBehaviour(CK_ISNN, DUMMY_OBJECT); }\r
1272 \r
1273     protected void regBehaviour(ConditionKey key, Object value) {\r
1274         registerQuery(key, value, getCValueBehaviour(), "Behaviour", "Behaviour", "behaviour");\r
1275     }\r
1276     protected void registerInlineBehaviour(ConditionKey key, Object value) {\r
1277         registerInlineQuery(key, value, getCValueBehaviour(), "Behaviour", "Behaviour", "behaviour");\r
1278     }\r
1279     abstract protected ConditionValue getCValueBehaviour();\r
1280 \r
1281     /**\r
1282      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
1283      * @param genoption The value of genoption as equal.\r
1284      */\r
1285     public void setGenoption_Equal(String genoption) {\r
1286         regGenoption(CK_EQ, fRES(genoption));\r
1287     }\r
1288 \r
1289     /**\r
1290      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
1291      * @param genoption The value of genoption as notEqual.\r
1292      */\r
1293     public void setGenoption_NotEqual(String genoption) {\r
1294         regGenoption(CK_NE, fRES(genoption));\r
1295     }\r
1296 \r
1297     /**\r
1298      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
1299      * @param genoption The value of genoption as greaterThan.\r
1300      */\r
1301     public void setGenoption_GreaterThan(String genoption) {\r
1302         regGenoption(CK_GT, fRES(genoption));\r
1303     }\r
1304 \r
1305     /**\r
1306      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1307      * @param genoption The value of genoption as lessThan.\r
1308      */\r
1309     public void setGenoption_LessThan(String genoption) {\r
1310         regGenoption(CK_LT, fRES(genoption));\r
1311     }\r
1312 \r
1313     /**\r
1314      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1315      * @param genoption The value of genoption as greaterEqual.\r
1316      */\r
1317     public void setGenoption_GreaterEqual(String genoption) {\r
1318         regGenoption(CK_GE, fRES(genoption));\r
1319     }\r
1320 \r
1321     /**\r
1322      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1323      * @param genoption The value of genoption as lessEqual.\r
1324      */\r
1325     public void setGenoption_LessEqual(String genoption) {\r
1326         regGenoption(CK_LE, fRES(genoption));\r
1327     }\r
1328 \r
1329     /**\r
1330      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1331      * @param genoption The value of genoption as prefixSearch.\r
1332      */\r
1333     public void setGenoption_PrefixSearch(String genoption) {\r
1334         regGenoption(CK_PS, fRES(genoption));\r
1335     }\r
1336 \r
1337     /**\r
1338      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1339      * @param genoption The value of genoption as likeSearch.\r
1340      * @param likeSearchOption The option of like-search. (NotNull)\r
1341      */\r
1342     public void setGenoption_LikeSearch(String genoption, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1343         registerLikeSearchQuery(CK_LS, fRES(genoption), getCValueGenoption(), "GenOption", "Genoption", "genoption", likeSearchOption);\r
1344     }\r
1345 \r
1346     /**\r
1347      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1348      * @param genoptionList The collection of genoption as inScope.\r
1349      */\r
1350     public void setGenoption_InScope(Collection<String> genoptionList) {\r
1351         regGenoption(CK_INS, cTL(genoptionList));\r
1352     }\r
1353 \r
1354     /**\r
1355      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1356      * @param genoption The collection of genoption as inScope.\r
1357      * @param inScopeOption The option of in-scope. (NotNull)\r
1358      */\r
1359     public void setGenoption_InScope(String genoption, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1360         registerInScopeQuery(CK_INS, fRES(genoption), getCValueGenoption(), "GenOption", "Genoption", "genoption", inScopeOption);\r
1361     }\r
1362 \r
1363     /**\r
1364      * IsNull(is null). And OnceRegistered.\r
1365      */\r
1366     public void setGenoption_IsNull() { regGenoption(CK_ISN, DUMMY_OBJECT); }\r
1367 \r
1368     /**\r
1369      * IsNotNull(is not null). And OnceRegistered.\r
1370      */\r
1371     public void setGenoption_IsNotNull() { regGenoption(CK_ISNN, DUMMY_OBJECT); }\r
1372 \r
1373     protected void regGenoption(ConditionKey key, Object value) {\r
1374         registerQuery(key, value, getCValueGenoption(), "GenOption", "Genoption", "genoption");\r
1375     }\r
1376     protected void registerInlineGenoption(ConditionKey key, Object value) {\r
1377         registerInlineQuery(key, value, getCValueGenoption(), "GenOption", "Genoption", "genoption");\r
1378     }\r
1379     abstract protected ConditionValue getCValueGenoption();\r
1380     \r
1381     /**\r
1382      * Equal(=). And NullIgnored, OnceRegistered. {INTEGER}\r
1383      * @param pos The value of pos as equal.\r
1384      */\r
1385     public void setPos_Equal(java.lang.Integer pos) {\r
1386         regPos(CK_EQ, pos);\r
1387     }\r
1388 \r
1389     /**\r
1390      * NotEqual(!=). And NullIgnored, OnceRegistered.\r
1391      * @param pos The value of pos as notEqual.\r
1392      */\r
1393     public void setPos_NotEqual(java.lang.Integer pos) {\r
1394         regPos(CK_NE, pos);\r
1395     }\r
1396 \r
1397     /**\r
1398      * GreaterThan(&gt;). And NullIgnored, OnceRegistered.\r
1399      * @param pos The value of pos as greaterThan.\r
1400      */\r
1401     public void setPos_GreaterThan(java.lang.Integer pos) {\r
1402         regPos(CK_GT, pos);\r
1403     }\r
1404 \r
1405     /**\r
1406      * LessThan(&lt;). And NullIgnored, OnceRegistered.\r
1407      * @param pos The value of pos as lessThan.\r
1408      */\r
1409     public void setPos_LessThan(java.lang.Integer pos) {\r
1410         regPos(CK_LT, pos);\r
1411     }\r
1412 \r
1413     /**\r
1414      * GreaterEqual(&gt;=). And NullIgnored, OnceRegistered.\r
1415      * @param pos The value of pos as greaterEqual.\r
1416      */\r
1417     public void setPos_GreaterEqual(java.lang.Integer pos) {\r
1418         regPos(CK_GE, pos);\r
1419     }\r
1420 \r
1421     /**\r
1422      * LessEqual(&lt;=). And NullIgnored, OnceRegistered.\r
1423      * @param pos The value of pos as lessEqual.\r
1424      */\r
1425     public void setPos_LessEqual(java.lang.Integer pos) {\r
1426         regPos(CK_LE, pos);\r
1427     }\r
1428 \r
1429     /**\r
1430      * InScope(in (1, 2)). And NullIgnored, NullElementIgnored, SeveralRegistered.\r
1431      * @param posList The collection of pos as inScope.\r
1432      */\r
1433     public void setPos_InScope(Collection<java.lang.Integer> posList) {\r
1434         regPos(CK_INS, cTL(posList));\r
1435     }\r
1436 \r
1437     /**\r
1438      * IsNull(is null). And OnceRegistered.\r
1439      */\r
1440     public void setPos_IsNull() { regPos(CK_ISN, DUMMY_OBJECT); }\r
1441 \r
1442     /**\r
1443      * IsNotNull(is not null). And OnceRegistered.\r
1444      */\r
1445     public void setPos_IsNotNull() { regPos(CK_ISNN, DUMMY_OBJECT); }\r
1446 \r
1447     protected void regPos(ConditionKey key, Object value) {\r
1448         registerQuery(key, value, getCValuePos(), "Pos", "Pos", "pos");\r
1449     }\r
1450     protected void registerInlinePos(ConditionKey key, Object value) {\r
1451         registerInlineQuery(key, value, getCValuePos(), "Pos", "Pos", "pos");\r
1452     }\r
1453     abstract protected ConditionValue getCValuePos();\r
1454 \r
1455     /**\r
1456      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
1457      * @param style The value of style as equal.\r
1458      */\r
1459     public void setStyle_Equal(String style) {\r
1460         regStyle(CK_EQ, fRES(style));\r
1461     }\r
1462 \r
1463     /**\r
1464      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
1465      * @param style The value of style as notEqual.\r
1466      */\r
1467     public void setStyle_NotEqual(String style) {\r
1468         regStyle(CK_NE, fRES(style));\r
1469     }\r
1470 \r
1471     /**\r
1472      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
1473      * @param style The value of style as greaterThan.\r
1474      */\r
1475     public void setStyle_GreaterThan(String style) {\r
1476         regStyle(CK_GT, fRES(style));\r
1477     }\r
1478 \r
1479     /**\r
1480      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1481      * @param style The value of style as lessThan.\r
1482      */\r
1483     public void setStyle_LessThan(String style) {\r
1484         regStyle(CK_LT, fRES(style));\r
1485     }\r
1486 \r
1487     /**\r
1488      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1489      * @param style The value of style as greaterEqual.\r
1490      */\r
1491     public void setStyle_GreaterEqual(String style) {\r
1492         regStyle(CK_GE, fRES(style));\r
1493     }\r
1494 \r
1495     /**\r
1496      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1497      * @param style The value of style as lessEqual.\r
1498      */\r
1499     public void setStyle_LessEqual(String style) {\r
1500         regStyle(CK_LE, fRES(style));\r
1501     }\r
1502 \r
1503     /**\r
1504      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1505      * @param style The value of style as prefixSearch.\r
1506      */\r
1507     public void setStyle_PrefixSearch(String style) {\r
1508         regStyle(CK_PS, fRES(style));\r
1509     }\r
1510 \r
1511     /**\r
1512      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1513      * @param style The value of style as likeSearch.\r
1514      * @param likeSearchOption The option of like-search. (NotNull)\r
1515      */\r
1516     public void setStyle_LikeSearch(String style, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1517         registerLikeSearchQuery(CK_LS, fRES(style), getCValueStyle(), "Style", "Style", "style", likeSearchOption);\r
1518     }\r
1519 \r
1520     /**\r
1521      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1522      * @param styleList The collection of style as inScope.\r
1523      */\r
1524     public void setStyle_InScope(Collection<String> styleList) {\r
1525         regStyle(CK_INS, cTL(styleList));\r
1526     }\r
1527 \r
1528     /**\r
1529      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1530      * @param style The collection of style as inScope.\r
1531      * @param inScopeOption The option of in-scope. (NotNull)\r
1532      */\r
1533     public void setStyle_InScope(String style, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1534         registerInScopeQuery(CK_INS, fRES(style), getCValueStyle(), "Style", "Style", "style", inScopeOption);\r
1535     }\r
1536 \r
1537     /**\r
1538      * IsNull(is null). And OnceRegistered.\r
1539      */\r
1540     public void setStyle_IsNull() { regStyle(CK_ISN, DUMMY_OBJECT); }\r
1541 \r
1542     /**\r
1543      * IsNotNull(is not null). And OnceRegistered.\r
1544      */\r
1545     public void setStyle_IsNotNull() { regStyle(CK_ISNN, DUMMY_OBJECT); }\r
1546 \r
1547     protected void regStyle(ConditionKey key, Object value) {\r
1548         registerQuery(key, value, getCValueStyle(), "Style", "Style", "style");\r
1549     }\r
1550     protected void registerInlineStyle(ConditionKey key, Object value) {\r
1551         registerInlineQuery(key, value, getCValueStyle(), "Style", "Style", "style");\r
1552     }\r
1553     abstract protected ConditionValue getCValueStyle();\r
1554 \r
1555     /**\r
1556      * Equal(=). And NullIgnored, OnceRegistered. {BIT : NotNull}\r
1557      * @param pure The value of pure as equal.\r
1558      */\r
1559     public void setPure_Equal(Boolean pure) {\r
1560         regPure(CK_EQ, pure);\r
1561     }\r
1562 \r
1563     protected void regPure(ConditionKey key, Object value) {\r
1564         registerQuery(key, value, getCValuePure(), "Pure", "Pure", "pure");\r
1565     }\r
1566     protected void registerInlinePure(ConditionKey key, Object value) {\r
1567         registerInlineQuery(key, value, getCValuePure(), "Pure", "Pure", "pure");\r
1568     }\r
1569     abstract protected ConditionValue getCValuePure();\r
1570 \r
1571     /**\r
1572      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
1573      * @param classifier The value of classifier as equal.\r
1574      */\r
1575     public void setClassifier_Equal(String classifier) {\r
1576         regClassifier(CK_EQ, fRES(classifier));\r
1577     }\r
1578 \r
1579     /**\r
1580      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
1581      * @param classifier The value of classifier as notEqual.\r
1582      */\r
1583     public void setClassifier_NotEqual(String classifier) {\r
1584         regClassifier(CK_NE, fRES(classifier));\r
1585     }\r
1586 \r
1587     /**\r
1588      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
1589      * @param classifier The value of classifier as greaterThan.\r
1590      */\r
1591     public void setClassifier_GreaterThan(String classifier) {\r
1592         regClassifier(CK_GT, fRES(classifier));\r
1593     }\r
1594 \r
1595     /**\r
1596      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1597      * @param classifier The value of classifier as lessThan.\r
1598      */\r
1599     public void setClassifier_LessThan(String classifier) {\r
1600         regClassifier(CK_LT, fRES(classifier));\r
1601     }\r
1602 \r
1603     /**\r
1604      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1605      * @param classifier The value of classifier as greaterEqual.\r
1606      */\r
1607     public void setClassifier_GreaterEqual(String classifier) {\r
1608         regClassifier(CK_GE, fRES(classifier));\r
1609     }\r
1610 \r
1611     /**\r
1612      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1613      * @param classifier The value of classifier as lessEqual.\r
1614      */\r
1615     public void setClassifier_LessEqual(String classifier) {\r
1616         regClassifier(CK_LE, fRES(classifier));\r
1617     }\r
1618 \r
1619     /**\r
1620      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1621      * @param classifier The value of classifier as prefixSearch.\r
1622      */\r
1623     public void setClassifier_PrefixSearch(String classifier) {\r
1624         regClassifier(CK_PS, fRES(classifier));\r
1625     }\r
1626 \r
1627     /**\r
1628      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1629      * @param classifier The value of classifier as likeSearch.\r
1630      * @param likeSearchOption The option of like-search. (NotNull)\r
1631      */\r
1632     public void setClassifier_LikeSearch(String classifier, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1633         registerLikeSearchQuery(CK_LS, fRES(classifier), getCValueClassifier(), "Classifier", "Classifier", "classifier", likeSearchOption);\r
1634     }\r
1635 \r
1636     /**\r
1637      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1638      * @param classifierList The collection of classifier as inScope.\r
1639      */\r
1640     public void setClassifier_InScope(Collection<String> classifierList) {\r
1641         regClassifier(CK_INS, cTL(classifierList));\r
1642     }\r
1643 \r
1644     /**\r
1645      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1646      * @param classifier The collection of classifier as inScope.\r
1647      * @param inScopeOption The option of in-scope. (NotNull)\r
1648      */\r
1649     public void setClassifier_InScope(String classifier, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1650         registerInScopeQuery(CK_INS, fRES(classifier), getCValueClassifier(), "Classifier", "Classifier", "classifier", inScopeOption);\r
1651     }\r
1652 \r
1653     /**\r
1654      * IsNull(is null). And OnceRegistered.\r
1655      */\r
1656     public void setClassifier_IsNull() { regClassifier(CK_ISN, DUMMY_OBJECT); }\r
1657 \r
1658     /**\r
1659      * IsNotNull(is not null). And OnceRegistered.\r
1660      */\r
1661     public void setClassifier_IsNotNull() { regClassifier(CK_ISNN, DUMMY_OBJECT); }\r
1662 \r
1663     protected void regClassifier(ConditionKey key, Object value) {\r
1664         registerQuery(key, value, getCValueClassifier(), "Classifier", "Classifier", "classifier");\r
1665     }\r
1666     protected void registerInlineClassifier(ConditionKey key, Object value) {\r
1667         registerInlineQuery(key, value, getCValueClassifier(), "Classifier", "Classifier", "classifier");\r
1668     }\r
1669     abstract protected ConditionValue getCValueClassifier();\r
1670 \r
1671     /**\r
1672      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
1673      * @param code The value of code as equal.\r
1674      */\r
1675     public void setCode_Equal(String code) {\r
1676         regCode(CK_EQ, fRES(code));\r
1677     }\r
1678 \r
1679     /**\r
1680      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
1681      * @param code The value of code as notEqual.\r
1682      */\r
1683     public void setCode_NotEqual(String code) {\r
1684         regCode(CK_NE, fRES(code));\r
1685     }\r
1686 \r
1687     /**\r
1688      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
1689      * @param code The value of code as greaterThan.\r
1690      */\r
1691     public void setCode_GreaterThan(String code) {\r
1692         regCode(CK_GT, fRES(code));\r
1693     }\r
1694 \r
1695     /**\r
1696      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1697      * @param code The value of code as lessThan.\r
1698      */\r
1699     public void setCode_LessThan(String code) {\r
1700         regCode(CK_LT, fRES(code));\r
1701     }\r
1702 \r
1703     /**\r
1704      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1705      * @param code The value of code as greaterEqual.\r
1706      */\r
1707     public void setCode_GreaterEqual(String code) {\r
1708         regCode(CK_GE, fRES(code));\r
1709     }\r
1710 \r
1711     /**\r
1712      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1713      * @param code The value of code as lessEqual.\r
1714      */\r
1715     public void setCode_LessEqual(String code) {\r
1716         regCode(CK_LE, fRES(code));\r
1717     }\r
1718 \r
1719     /**\r
1720      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1721      * @param code The value of code as prefixSearch.\r
1722      */\r
1723     public void setCode_PrefixSearch(String code) {\r
1724         regCode(CK_PS, fRES(code));\r
1725     }\r
1726 \r
1727     /**\r
1728      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1729      * @param code The value of code as likeSearch.\r
1730      * @param likeSearchOption The option of like-search. (NotNull)\r
1731      */\r
1732     public void setCode_LikeSearch(String code, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1733         registerLikeSearchQuery(CK_LS, fRES(code), getCValueCode(), "Code", "Code", "code", likeSearchOption);\r
1734     }\r
1735 \r
1736     /**\r
1737      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1738      * @param codeList The collection of code as inScope.\r
1739      */\r
1740     public void setCode_InScope(Collection<String> codeList) {\r
1741         regCode(CK_INS, cTL(codeList));\r
1742     }\r
1743 \r
1744     /**\r
1745      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1746      * @param code The collection of code as inScope.\r
1747      * @param inScopeOption The option of in-scope. (NotNull)\r
1748      */\r
1749     public void setCode_InScope(String code, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1750         registerInScopeQuery(CK_INS, fRES(code), getCValueCode(), "Code", "Code", "code", inScopeOption);\r
1751     }\r
1752 \r
1753     /**\r
1754      * IsNull(is null). And OnceRegistered.\r
1755      */\r
1756     public void setCode_IsNull() { regCode(CK_ISN, DUMMY_OBJECT); }\r
1757 \r
1758     /**\r
1759      * IsNotNull(is not null). And OnceRegistered.\r
1760      */\r
1761     public void setCode_IsNotNull() { regCode(CK_ISNN, DUMMY_OBJECT); }\r
1762 \r
1763     protected void regCode(ConditionKey key, Object value) {\r
1764         registerQuery(key, value, getCValueCode(), "Code", "Code", "code");\r
1765     }\r
1766     protected void registerInlineCode(ConditionKey key, Object value) {\r
1767         registerInlineQuery(key, value, getCValueCode(), "Code", "Code", "code");\r
1768     }\r
1769     abstract protected ConditionValue getCValueCode();\r
1770 \r
1771     /**\r
1772      * Equal(=). And NullIgnored, OnceRegistered. {BIT : NotNull}\r
1773      * @param isroot The value of isroot as equal.\r
1774      */\r
1775     public void setIsroot_Equal(Boolean isroot) {\r
1776         regIsroot(CK_EQ, isroot);\r
1777     }\r
1778 \r
1779     protected void regIsroot(ConditionKey key, Object value) {\r
1780         registerQuery(key, value, getCValueIsroot(), "IsRoot", "Isroot", "isroot");\r
1781     }\r
1782     protected void registerInlineIsroot(ConditionKey key, Object value) {\r
1783         registerInlineQuery(key, value, getCValueIsroot(), "IsRoot", "Isroot", "isroot");\r
1784     }\r
1785     abstract protected ConditionValue getCValueIsroot();\r
1786 \r
1787     /**\r
1788      * Equal(=). And NullIgnored, OnceRegistered. {BIT : NotNull}\r
1789      * @param isleaf The value of isleaf as equal.\r
1790      */\r
1791     public void setIsleaf_Equal(Boolean isleaf) {\r
1792         regIsleaf(CK_EQ, isleaf);\r
1793     }\r
1794 \r
1795     protected void regIsleaf(ConditionKey key, Object value) {\r
1796         registerQuery(key, value, getCValueIsleaf(), "IsLeaf", "Isleaf", "isleaf");\r
1797     }\r
1798     protected void registerInlineIsleaf(ConditionKey key, Object value) {\r
1799         registerInlineQuery(key, value, getCValueIsleaf(), "IsLeaf", "Isleaf", "isleaf");\r
1800     }\r
1801     abstract protected ConditionValue getCValueIsleaf();\r
1802 \r
1803     /**\r
1804      * Equal(=). And NullIgnored, OnceRegistered. {BIT : NotNull}\r
1805      * @param isquery The value of isquery as equal.\r
1806      */\r
1807     public void setIsquery_Equal(Boolean isquery) {\r
1808         regIsquery(CK_EQ, isquery);\r
1809     }\r
1810 \r
1811     protected void regIsquery(ConditionKey key, Object value) {\r
1812         registerQuery(key, value, getCValueIsquery(), "IsQuery", "Isquery", "isquery");\r
1813     }\r
1814     protected void registerInlineIsquery(ConditionKey key, Object value) {\r
1815         registerInlineQuery(key, value, getCValueIsquery(), "IsQuery", "Isquery", "isquery");\r
1816     }\r
1817     abstract protected ConditionValue getCValueIsquery();\r
1818 \r
1819     /**\r
1820      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
1821      * @param stateflags The value of stateflags as equal.\r
1822      */\r
1823     public void setStateflags_Equal(String stateflags) {\r
1824         regStateflags(CK_EQ, fRES(stateflags));\r
1825     }\r
1826 \r
1827     /**\r
1828      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
1829      * @param stateflags The value of stateflags as notEqual.\r
1830      */\r
1831     public void setStateflags_NotEqual(String stateflags) {\r
1832         regStateflags(CK_NE, fRES(stateflags));\r
1833     }\r
1834 \r
1835     /**\r
1836      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
1837      * @param stateflags The value of stateflags as greaterThan.\r
1838      */\r
1839     public void setStateflags_GreaterThan(String stateflags) {\r
1840         regStateflags(CK_GT, fRES(stateflags));\r
1841     }\r
1842 \r
1843     /**\r
1844      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1845      * @param stateflags The value of stateflags as lessThan.\r
1846      */\r
1847     public void setStateflags_LessThan(String stateflags) {\r
1848         regStateflags(CK_LT, fRES(stateflags));\r
1849     }\r
1850 \r
1851     /**\r
1852      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1853      * @param stateflags The value of stateflags as greaterEqual.\r
1854      */\r
1855     public void setStateflags_GreaterEqual(String stateflags) {\r
1856         regStateflags(CK_GE, fRES(stateflags));\r
1857     }\r
1858 \r
1859     /**\r
1860      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1861      * @param stateflags The value of stateflags as lessEqual.\r
1862      */\r
1863     public void setStateflags_LessEqual(String stateflags) {\r
1864         regStateflags(CK_LE, fRES(stateflags));\r
1865     }\r
1866 \r
1867     /**\r
1868      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1869      * @param stateflags The value of stateflags as prefixSearch.\r
1870      */\r
1871     public void setStateflags_PrefixSearch(String stateflags) {\r
1872         regStateflags(CK_PS, fRES(stateflags));\r
1873     }\r
1874 \r
1875     /**\r
1876      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1877      * @param stateflags The value of stateflags as likeSearch.\r
1878      * @param likeSearchOption The option of like-search. (NotNull)\r
1879      */\r
1880     public void setStateflags_LikeSearch(String stateflags, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1881         registerLikeSearchQuery(CK_LS, fRES(stateflags), getCValueStateflags(), "StateFlags", "Stateflags", "stateflags", likeSearchOption);\r
1882     }\r
1883 \r
1884     /**\r
1885      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1886      * @param stateflagsList The collection of stateflags as inScope.\r
1887      */\r
1888     public void setStateflags_InScope(Collection<String> stateflagsList) {\r
1889         regStateflags(CK_INS, cTL(stateflagsList));\r
1890     }\r
1891 \r
1892     /**\r
1893      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1894      * @param stateflags The collection of stateflags as inScope.\r
1895      * @param inScopeOption The option of in-scope. (NotNull)\r
1896      */\r
1897     public void setStateflags_InScope(String stateflags, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1898         registerInScopeQuery(CK_INS, fRES(stateflags), getCValueStateflags(), "StateFlags", "Stateflags", "stateflags", inScopeOption);\r
1899     }\r
1900 \r
1901     /**\r
1902      * IsNull(is null). And OnceRegistered.\r
1903      */\r
1904     public void setStateflags_IsNull() { regStateflags(CK_ISN, DUMMY_OBJECT); }\r
1905 \r
1906     /**\r
1907      * IsNotNull(is not null). And OnceRegistered.\r
1908      */\r
1909     public void setStateflags_IsNotNull() { regStateflags(CK_ISNN, DUMMY_OBJECT); }\r
1910 \r
1911     protected void regStateflags(ConditionKey key, Object value) {\r
1912         registerQuery(key, value, getCValueStateflags(), "StateFlags", "Stateflags", "stateflags");\r
1913     }\r
1914     protected void registerInlineStateflags(ConditionKey key, Object value) {\r
1915         registerInlineQuery(key, value, getCValueStateflags(), "StateFlags", "Stateflags", "stateflags");\r
1916     }\r
1917     abstract protected ConditionValue getCValueStateflags();\r
1918 \r
1919     /**\r
1920      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
1921      * @param eaGuid The value of eaGuid as equal.\r
1922      */\r
1923     public void setEaGuid_Equal(String eaGuid) {\r
1924         regEaGuid(CK_EQ, fRES(eaGuid));\r
1925     }\r
1926 \r
1927     /**\r
1928      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
1929      * @param eaGuid The value of eaGuid as notEqual.\r
1930      */\r
1931     public void setEaGuid_NotEqual(String eaGuid) {\r
1932         regEaGuid(CK_NE, fRES(eaGuid));\r
1933     }\r
1934 \r
1935     /**\r
1936      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
1937      * @param eaGuid The value of eaGuid as greaterThan.\r
1938      */\r
1939     public void setEaGuid_GreaterThan(String eaGuid) {\r
1940         regEaGuid(CK_GT, fRES(eaGuid));\r
1941     }\r
1942 \r
1943     /**\r
1944      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
1945      * @param eaGuid The value of eaGuid as lessThan.\r
1946      */\r
1947     public void setEaGuid_LessThan(String eaGuid) {\r
1948         regEaGuid(CK_LT, fRES(eaGuid));\r
1949     }\r
1950 \r
1951     /**\r
1952      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1953      * @param eaGuid The value of eaGuid as greaterEqual.\r
1954      */\r
1955     public void setEaGuid_GreaterEqual(String eaGuid) {\r
1956         regEaGuid(CK_GE, fRES(eaGuid));\r
1957     }\r
1958 \r
1959     /**\r
1960      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
1961      * @param eaGuid The value of eaGuid as lessEqual.\r
1962      */\r
1963     public void setEaGuid_LessEqual(String eaGuid) {\r
1964         regEaGuid(CK_LE, fRES(eaGuid));\r
1965     }\r
1966 \r
1967     /**\r
1968      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
1969      * @param eaGuid The value of eaGuid as prefixSearch.\r
1970      */\r
1971     public void setEaGuid_PrefixSearch(String eaGuid) {\r
1972         regEaGuid(CK_PS, fRES(eaGuid));\r
1973     }\r
1974 \r
1975     /**\r
1976      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
1977      * @param eaGuid The value of eaGuid as likeSearch.\r
1978      * @param likeSearchOption The option of like-search. (NotNull)\r
1979      */\r
1980     public void setEaGuid_LikeSearch(String eaGuid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
1981         registerLikeSearchQuery(CK_LS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid", likeSearchOption);\r
1982     }\r
1983 \r
1984     /**\r
1985      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1986      * @param eaGuidList The collection of eaGuid as inScope.\r
1987      */\r
1988     public void setEaGuid_InScope(Collection<String> eaGuidList) {\r
1989         regEaGuid(CK_INS, cTL(eaGuidList));\r
1990     }\r
1991 \r
1992     /**\r
1993      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
1994      * @param eaGuid The collection of eaGuid as inScope.\r
1995      * @param inScopeOption The option of in-scope. (NotNull)\r
1996      */\r
1997     public void setEaGuid_InScope(String eaGuid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
1998         registerInScopeQuery(CK_INS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid", inScopeOption);\r
1999     }\r
2000 \r
2001     /**\r
2002      * IsNull(is null). And OnceRegistered.\r
2003      */\r
2004     public void setEaGuid_IsNull() { regEaGuid(CK_ISN, DUMMY_OBJECT); }\r
2005 \r
2006     /**\r
2007      * IsNotNull(is not null). And OnceRegistered.\r
2008      */\r
2009     public void setEaGuid_IsNotNull() { regEaGuid(CK_ISNN, DUMMY_OBJECT); }\r
2010 \r
2011     protected void regEaGuid(ConditionKey key, Object value) {\r
2012         registerQuery(key, value, getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid");\r
2013     }\r
2014     protected void registerInlineEaGuid(ConditionKey key, Object value) {\r
2015         registerInlineQuery(key, value, getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid");\r
2016     }\r
2017     abstract protected ConditionValue getCValueEaGuid();\r
2018 \r
2019     /**\r
2020      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
2021      * @param styleex The value of styleex as equal.\r
2022      */\r
2023     public void setStyleex_Equal(String styleex) {\r
2024         regStyleex(CK_EQ, fRES(styleex));\r
2025     }\r
2026 \r
2027     /**\r
2028      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
2029      * @param styleex The value of styleex as notEqual.\r
2030      */\r
2031     public void setStyleex_NotEqual(String styleex) {\r
2032         regStyleex(CK_NE, fRES(styleex));\r
2033     }\r
2034 \r
2035     /**\r
2036      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
2037      * @param styleex The value of styleex as greaterThan.\r
2038      */\r
2039     public void setStyleex_GreaterThan(String styleex) {\r
2040         regStyleex(CK_GT, fRES(styleex));\r
2041     }\r
2042 \r
2043     /**\r
2044      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
2045      * @param styleex The value of styleex as lessThan.\r
2046      */\r
2047     public void setStyleex_LessThan(String styleex) {\r
2048         regStyleex(CK_LT, fRES(styleex));\r
2049     }\r
2050 \r
2051     /**\r
2052      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
2053      * @param styleex The value of styleex as greaterEqual.\r
2054      */\r
2055     public void setStyleex_GreaterEqual(String styleex) {\r
2056         regStyleex(CK_GE, fRES(styleex));\r
2057     }\r
2058 \r
2059     /**\r
2060      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
2061      * @param styleex The value of styleex as lessEqual.\r
2062      */\r
2063     public void setStyleex_LessEqual(String styleex) {\r
2064         regStyleex(CK_LE, fRES(styleex));\r
2065     }\r
2066 \r
2067     /**\r
2068      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
2069      * @param styleex The value of styleex as prefixSearch.\r
2070      */\r
2071     public void setStyleex_PrefixSearch(String styleex) {\r
2072         regStyleex(CK_PS, fRES(styleex));\r
2073     }\r
2074 \r
2075     /**\r
2076      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
2077      * @param styleex The value of styleex as likeSearch.\r
2078      * @param likeSearchOption The option of like-search. (NotNull)\r
2079      */\r
2080     public void setStyleex_LikeSearch(String styleex, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
2081         registerLikeSearchQuery(CK_LS, fRES(styleex), getCValueStyleex(), "StyleEx", "Styleex", "styleex", likeSearchOption);\r
2082     }\r
2083 \r
2084     /**\r
2085      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
2086      * @param styleexList The collection of styleex as inScope.\r
2087      */\r
2088     public void setStyleex_InScope(Collection<String> styleexList) {\r
2089         regStyleex(CK_INS, cTL(styleexList));\r
2090     }\r
2091 \r
2092     /**\r
2093      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
2094      * @param styleex The collection of styleex as inScope.\r
2095      * @param inScopeOption The option of in-scope. (NotNull)\r
2096      */\r
2097     public void setStyleex_InScope(String styleex, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
2098         registerInScopeQuery(CK_INS, fRES(styleex), getCValueStyleex(), "StyleEx", "Styleex", "styleex", inScopeOption);\r
2099     }\r
2100 \r
2101     /**\r
2102      * IsNull(is null). And OnceRegistered.\r
2103      */\r
2104     public void setStyleex_IsNull() { regStyleex(CK_ISN, DUMMY_OBJECT); }\r
2105 \r
2106     /**\r
2107      * IsNotNull(is not null). And OnceRegistered.\r
2108      */\r
2109     public void setStyleex_IsNotNull() { regStyleex(CK_ISNN, DUMMY_OBJECT); }\r
2110 \r
2111     protected void regStyleex(ConditionKey key, Object value) {\r
2112         registerQuery(key, value, getCValueStyleex(), "StyleEx", "Styleex", "styleex");\r
2113     }\r
2114     protected void registerInlineStyleex(ConditionKey key, Object value) {\r
2115         registerInlineQuery(key, value, getCValueStyleex(), "StyleEx", "Styleex", "styleex");\r
2116     }\r
2117     abstract protected ConditionValue getCValueStyleex();\r
2118 \r
2119     // Very Internal (for Suppressing Warn about 'Not Use Import')\r
2120     protected String getConditionBeanClassNameInternally() { return TOperationCB.class.getName(); }\r
2121     protected String getConditionQueryClassNameInternally() { return TOperationCQ.class.getName(); }\r
2122 }\r