001: /*
002: * XML Type: parenthesesDef
003: * Namespace: http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0
004: * Java type: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef
005: *
006: * Automatically generated - do not modify.
007: */
008: package com.bostechcorp.cbesb.etl.dataSourceMap.x10;
009:
010: /**
011: * An XML parenthesesDef(@http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0).
012: *
013: * This is a complex type.
014: */
015: public interface ParenthesesDef 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("parenthesesdef66f4type");
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 "conjunction" attribute
111: */
112: java.lang.String getConjunction();
113:
114: /**
115: * Gets (as xml) the "conjunction" attribute
116: */
117: org.apache.xmlbeans.XmlString xgetConjunction();
118:
119: /**
120: * True if has "conjunction" attribute
121: */
122: boolean isSetConjunction();
123:
124: /**
125: * Sets the "conjunction" attribute
126: */
127: void setConjunction(java.lang.String conjunction);
128:
129: /**
130: * Sets (as xml) the "conjunction" attribute
131: */
132: void xsetConjunction(org.apache.xmlbeans.XmlString conjunction);
133:
134: /**
135: * Unsets the "conjunction" attribute
136: */
137: void unsetConjunction();
138:
139: /**
140: * A factory class with static methods for creating instances
141: * of this type.
142: */
143:
144: public static final class Factory {
145: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef newInstance() {
146: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
147: .getContextTypeLoader().newInstance(type, null);
148: }
149:
150: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef newInstance(
151: org.apache.xmlbeans.XmlOptions options) {
152: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
153: .getContextTypeLoader().newInstance(type, options);
154: }
155:
156: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
157: java.lang.String s)
158: throws org.apache.xmlbeans.XmlException {
159: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
160: .getContextTypeLoader().parse(s, type, null);
161: }
162:
163: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
164: java.lang.String s,
165: org.apache.xmlbeans.XmlOptions options)
166: throws org.apache.xmlbeans.XmlException {
167: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
168: .getContextTypeLoader().parse(s, type, options);
169: }
170:
171: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
172: java.io.File f)
173: throws org.apache.xmlbeans.XmlException,
174: java.io.IOException {
175: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
176: .getContextTypeLoader().parse(f, type, null);
177: }
178:
179: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
180: java.io.File f, org.apache.xmlbeans.XmlOptions options)
181: throws org.apache.xmlbeans.XmlException,
182: java.io.IOException {
183: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
184: .getContextTypeLoader().parse(f, type, options);
185: }
186:
187: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
188: java.net.URL u)
189: throws org.apache.xmlbeans.XmlException,
190: java.io.IOException {
191: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
192: .getContextTypeLoader().parse(u, type, null);
193: }
194:
195: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
196: java.net.URL u, org.apache.xmlbeans.XmlOptions options)
197: throws org.apache.xmlbeans.XmlException,
198: java.io.IOException {
199: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
200: .getContextTypeLoader().parse(u, type, options);
201: }
202:
203: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
204: java.io.InputStream is)
205: throws org.apache.xmlbeans.XmlException,
206: java.io.IOException {
207: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
208: .getContextTypeLoader().parse(is, type, null);
209: }
210:
211: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
212: java.io.InputStream is,
213: org.apache.xmlbeans.XmlOptions options)
214: throws org.apache.xmlbeans.XmlException,
215: java.io.IOException {
216: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
217: .getContextTypeLoader().parse(is, type, options);
218: }
219:
220: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
221: java.io.Reader r)
222: throws org.apache.xmlbeans.XmlException,
223: java.io.IOException {
224: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
225: .getContextTypeLoader().parse(r, type, null);
226: }
227:
228: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
229: java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
230: throws org.apache.xmlbeans.XmlException,
231: java.io.IOException {
232: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
233: .getContextTypeLoader().parse(r, type, options);
234: }
235:
236: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
237: org.w3c.dom.Node node)
238: throws org.apache.xmlbeans.XmlException {
239: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
240: .getContextTypeLoader().parse(node, type, null);
241: }
242:
243: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
244: org.w3c.dom.Node node,
245: org.apache.xmlbeans.XmlOptions options)
246: throws org.apache.xmlbeans.XmlException {
247: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
248: .getContextTypeLoader().parse(node, type, options);
249: }
250:
251: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
252: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
253: throws org.apache.xmlbeans.XmlException,
254: org.apache.xmlbeans.xml.stream.XMLStreamException {
255: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
256: .getContextTypeLoader().parse(xis, type, null);
257: }
258:
259: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parse(
260: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
261: org.apache.xmlbeans.XmlOptions options)
262: throws org.apache.xmlbeans.XmlException,
263: org.apache.xmlbeans.xml.stream.XMLStreamException {
264: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef) org.apache.xmlbeans.XmlBeans
265: .getContextTypeLoader().parse(xis, type, options);
266: }
267:
268: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
269: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
270: throws org.apache.xmlbeans.XmlException,
271: org.apache.xmlbeans.xml.stream.XMLStreamException {
272: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
273: .newValidatingXMLInputStream(xis, type, null);
274: }
275:
276: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
277: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
278: org.apache.xmlbeans.XmlOptions options)
279: throws org.apache.xmlbeans.XmlException,
280: org.apache.xmlbeans.xml.stream.XMLStreamException {
281: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
282: .newValidatingXMLInputStream(xis, type, options);
283: }
284:
285: private Factory() {
286: } // No instance of this class allowed
287: }
288: }
|