001: /*
002: * XML Type: whereClauseDef
003: * Namespace: http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0
004: * Java type: com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef
005: *
006: * Automatically generated - do not modify.
007: */
008: package com.bostechcorp.cbesb.etl.dataSourceMap.x10;
009:
010: /**
011: * An XML whereClauseDef(@http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0).
012: *
013: * This is a complex type.
014: */
015: public interface WhereClauseDef extends org.apache.xmlbeans.XmlObject {
016: public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) schema.system.s5510FE91037BC1DD5EBCB28481B5B217.TypeSystemHolder.typeSystem
017: .resolveHandle("whereclausedeff350type");
018:
019: /**
020: * Gets array of all "compare" elements
021: */
022: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef[] getCompareArray();
023:
024: /**
025: * Gets ith "compare" element
026: */
027: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef getCompareArray(
028: int i);
029:
030: /**
031: * Returns number of "compare" element
032: */
033: int sizeOfCompareArray();
034:
035: /**
036: * Sets array of all "compare" element
037: */
038: void setCompareArray(
039: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef[] compareArray);
040:
041: /**
042: * Sets ith "compare" element
043: */
044: void setCompareArray(
045: int i,
046: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef compare);
047:
048: /**
049: * Inserts and returns a new empty value (as xml) as the ith "compare" element
050: */
051: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef insertNewCompare(
052: int i);
053:
054: /**
055: * Appends and returns a new empty value (as xml) as the last "compare" element
056: */
057: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef addNewCompare();
058:
059: /**
060: * Removes the ith "compare" element
061: */
062: void removeCompare(int i);
063:
064: /**
065: * Gets array of all "parentheses" elements
066: */
067: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef[] getParenthesesArray();
068:
069: /**
070: * Gets ith "parentheses" element
071: */
072: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef getParenthesesArray(
073: int i);
074:
075: /**
076: * Returns number of "parentheses" element
077: */
078: int sizeOfParenthesesArray();
079:
080: /**
081: * Sets array of all "parentheses" element
082: */
083: void setParenthesesArray(
084: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef[] parenthesesArray);
085:
086: /**
087: * Sets ith "parentheses" element
088: */
089: void setParenthesesArray(
090: int i,
091: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parentheses);
092:
093: /**
094: * Inserts and returns a new empty value (as xml) as the ith "parentheses" element
095: */
096: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef insertNewParentheses(
097: int i);
098:
099: /**
100: * Appends and returns a new empty value (as xml) as the last "parentheses" element
101: */
102: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef addNewParentheses();
103:
104: /**
105: * Removes the ith "parentheses" element
106: */
107: void removeParentheses(int i);
108:
109: /**
110: * Gets the "table" element
111: */
112: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef getTable();
113:
114: /**
115: * True if has "table" element
116: */
117: boolean isSetTable();
118:
119: /**
120: * Sets the "table" element
121: */
122: void setTable(
123: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef table);
124:
125: /**
126: * Appends and returns a new empty "table" element
127: */
128: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef addNewTable();
129:
130: /**
131: * Unsets the "table" element
132: */
133: void unsetTable();
134:
135: /**
136: * A factory class with static methods for creating instances
137: * of this type.
138: */
139:
140: public static final class Factory {
141: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef newInstance() {
142: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
143: .getContextTypeLoader().newInstance(type, null);
144: }
145:
146: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef newInstance(
147: org.apache.xmlbeans.XmlOptions options) {
148: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
149: .getContextTypeLoader().newInstance(type, options);
150: }
151:
152: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
153: java.lang.String s)
154: throws org.apache.xmlbeans.XmlException {
155: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
156: .getContextTypeLoader().parse(s, type, null);
157: }
158:
159: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
160: java.lang.String s,
161: org.apache.xmlbeans.XmlOptions options)
162: throws org.apache.xmlbeans.XmlException {
163: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
164: .getContextTypeLoader().parse(s, type, options);
165: }
166:
167: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
168: java.io.File f)
169: throws org.apache.xmlbeans.XmlException,
170: java.io.IOException {
171: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
172: .getContextTypeLoader().parse(f, type, null);
173: }
174:
175: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
176: java.io.File f, org.apache.xmlbeans.XmlOptions options)
177: throws org.apache.xmlbeans.XmlException,
178: java.io.IOException {
179: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
180: .getContextTypeLoader().parse(f, type, options);
181: }
182:
183: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
184: java.net.URL u)
185: throws org.apache.xmlbeans.XmlException,
186: java.io.IOException {
187: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
188: .getContextTypeLoader().parse(u, type, null);
189: }
190:
191: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
192: java.net.URL u, org.apache.xmlbeans.XmlOptions options)
193: throws org.apache.xmlbeans.XmlException,
194: java.io.IOException {
195: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
196: .getContextTypeLoader().parse(u, type, options);
197: }
198:
199: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
200: java.io.InputStream is)
201: throws org.apache.xmlbeans.XmlException,
202: java.io.IOException {
203: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
204: .getContextTypeLoader().parse(is, type, null);
205: }
206:
207: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
208: java.io.InputStream is,
209: org.apache.xmlbeans.XmlOptions options)
210: throws org.apache.xmlbeans.XmlException,
211: java.io.IOException {
212: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
213: .getContextTypeLoader().parse(is, type, options);
214: }
215:
216: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
217: java.io.Reader r)
218: throws org.apache.xmlbeans.XmlException,
219: java.io.IOException {
220: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
221: .getContextTypeLoader().parse(r, type, null);
222: }
223:
224: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
225: java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
226: throws org.apache.xmlbeans.XmlException,
227: java.io.IOException {
228: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
229: .getContextTypeLoader().parse(r, type, options);
230: }
231:
232: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
233: org.w3c.dom.Node node)
234: throws org.apache.xmlbeans.XmlException {
235: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
236: .getContextTypeLoader().parse(node, type, null);
237: }
238:
239: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
240: org.w3c.dom.Node node,
241: org.apache.xmlbeans.XmlOptions options)
242: throws org.apache.xmlbeans.XmlException {
243: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
244: .getContextTypeLoader().parse(node, type, options);
245: }
246:
247: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
248: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
249: throws org.apache.xmlbeans.XmlException,
250: org.apache.xmlbeans.xml.stream.XMLStreamException {
251: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
252: .getContextTypeLoader().parse(xis, type, null);
253: }
254:
255: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef parse(
256: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
257: org.apache.xmlbeans.XmlOptions options)
258: throws org.apache.xmlbeans.XmlException,
259: org.apache.xmlbeans.xml.stream.XMLStreamException {
260: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef) org.apache.xmlbeans.XmlBeans
261: .getContextTypeLoader().parse(xis, type, options);
262: }
263:
264: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
265: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
266: throws org.apache.xmlbeans.XmlException,
267: org.apache.xmlbeans.xml.stream.XMLStreamException {
268: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
269: .newValidatingXMLInputStream(xis, type, null);
270: }
271:
272: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
273: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
274: org.apache.xmlbeans.XmlOptions options)
275: throws org.apache.xmlbeans.XmlException,
276: org.apache.xmlbeans.xml.stream.XMLStreamException {
277: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
278: .newValidatingXMLInputStream(xis, type, options);
279: }
280:
281: private Factory() {
282: } // No instance of this class allowed
283: }
284: }
|