001: /*
002: * XML Type: compareDef
003: * Namespace: http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0
004: * Java type: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef
005: *
006: * Automatically generated - do not modify.
007: */
008: package com.bostechcorp.cbesb.etl.dataSourceMap.x10;
009:
010: /**
011: * An XML compareDef(@http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0).
012: *
013: * This is a complex type.
014: */
015: public interface CompareDef 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("comparedef7d3ftype");
018:
019: /**
020: * Gets the "conjunction" attribute
021: */
022: java.lang.String getConjunction();
023:
024: /**
025: * Gets (as xml) the "conjunction" attribute
026: */
027: org.apache.xmlbeans.XmlString xgetConjunction();
028:
029: /**
030: * True if has "conjunction" attribute
031: */
032: boolean isSetConjunction();
033:
034: /**
035: * Sets the "conjunction" attribute
036: */
037: void setConjunction(java.lang.String conjunction);
038:
039: /**
040: * Sets (as xml) the "conjunction" attribute
041: */
042: void xsetConjunction(org.apache.xmlbeans.XmlString conjunction);
043:
044: /**
045: * Unsets the "conjunction" attribute
046: */
047: void unsetConjunction();
048:
049: /**
050: * Gets the "operand1" attribute
051: */
052: java.lang.String getOperand1();
053:
054: /**
055: * Gets (as xml) the "operand1" attribute
056: */
057: org.apache.xmlbeans.XmlString xgetOperand1();
058:
059: /**
060: * Sets the "operand1" attribute
061: */
062: void setOperand1(java.lang.String operand1);
063:
064: /**
065: * Sets (as xml) the "operand1" attribute
066: */
067: void xsetOperand1(org.apache.xmlbeans.XmlString operand1);
068:
069: /**
070: * Gets the "operator" attribute
071: */
072: java.lang.String getOperator();
073:
074: /**
075: * Gets (as xml) the "operator" attribute
076: */
077: org.apache.xmlbeans.XmlString xgetOperator();
078:
079: /**
080: * Sets the "operator" attribute
081: */
082: void setOperator(java.lang.String operator);
083:
084: /**
085: * Sets (as xml) the "operator" attribute
086: */
087: void xsetOperator(org.apache.xmlbeans.XmlString operator);
088:
089: /**
090: * Gets the "operand2" attribute
091: */
092: java.lang.String getOperand2();
093:
094: /**
095: * Gets (as xml) the "operand2" attribute
096: */
097: org.apache.xmlbeans.XmlString xgetOperand2();
098:
099: /**
100: * Sets the "operand2" attribute
101: */
102: void setOperand2(java.lang.String operand2);
103:
104: /**
105: * Sets (as xml) the "operand2" attribute
106: */
107: void xsetOperand2(org.apache.xmlbeans.XmlString operand2);
108:
109: /**
110: * A factory class with static methods for creating instances
111: * of this type.
112: */
113:
114: public static final class Factory {
115: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef newInstance() {
116: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
117: .getContextTypeLoader().newInstance(type, null);
118: }
119:
120: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef newInstance(
121: org.apache.xmlbeans.XmlOptions options) {
122: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
123: .getContextTypeLoader().newInstance(type, options);
124: }
125:
126: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
127: java.lang.String s)
128: throws org.apache.xmlbeans.XmlException {
129: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
130: .getContextTypeLoader().parse(s, type, null);
131: }
132:
133: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
134: java.lang.String s,
135: org.apache.xmlbeans.XmlOptions options)
136: throws org.apache.xmlbeans.XmlException {
137: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
138: .getContextTypeLoader().parse(s, type, options);
139: }
140:
141: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
142: java.io.File f)
143: throws org.apache.xmlbeans.XmlException,
144: java.io.IOException {
145: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
146: .getContextTypeLoader().parse(f, type, null);
147: }
148:
149: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
150: java.io.File f, org.apache.xmlbeans.XmlOptions options)
151: throws org.apache.xmlbeans.XmlException,
152: java.io.IOException {
153: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
154: .getContextTypeLoader().parse(f, type, options);
155: }
156:
157: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
158: java.net.URL u)
159: throws org.apache.xmlbeans.XmlException,
160: java.io.IOException {
161: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
162: .getContextTypeLoader().parse(u, type, null);
163: }
164:
165: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
166: java.net.URL u, org.apache.xmlbeans.XmlOptions options)
167: throws org.apache.xmlbeans.XmlException,
168: java.io.IOException {
169: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
170: .getContextTypeLoader().parse(u, type, options);
171: }
172:
173: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
174: java.io.InputStream is)
175: throws org.apache.xmlbeans.XmlException,
176: java.io.IOException {
177: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
178: .getContextTypeLoader().parse(is, type, null);
179: }
180:
181: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
182: java.io.InputStream is,
183: org.apache.xmlbeans.XmlOptions options)
184: throws org.apache.xmlbeans.XmlException,
185: java.io.IOException {
186: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
187: .getContextTypeLoader().parse(is, type, options);
188: }
189:
190: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
191: java.io.Reader r)
192: throws org.apache.xmlbeans.XmlException,
193: java.io.IOException {
194: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
195: .getContextTypeLoader().parse(r, type, null);
196: }
197:
198: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
199: java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
200: throws org.apache.xmlbeans.XmlException,
201: java.io.IOException {
202: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
203: .getContextTypeLoader().parse(r, type, options);
204: }
205:
206: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
207: org.w3c.dom.Node node)
208: throws org.apache.xmlbeans.XmlException {
209: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
210: .getContextTypeLoader().parse(node, type, null);
211: }
212:
213: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
214: org.w3c.dom.Node node,
215: org.apache.xmlbeans.XmlOptions options)
216: throws org.apache.xmlbeans.XmlException {
217: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
218: .getContextTypeLoader().parse(node, type, options);
219: }
220:
221: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
222: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
223: throws org.apache.xmlbeans.XmlException,
224: org.apache.xmlbeans.xml.stream.XMLStreamException {
225: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
226: .getContextTypeLoader().parse(xis, type, null);
227: }
228:
229: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef parse(
230: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
231: org.apache.xmlbeans.XmlOptions options)
232: throws org.apache.xmlbeans.XmlException,
233: org.apache.xmlbeans.xml.stream.XMLStreamException {
234: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef) org.apache.xmlbeans.XmlBeans
235: .getContextTypeLoader().parse(xis, type, options);
236: }
237:
238: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
239: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
240: throws org.apache.xmlbeans.XmlException,
241: org.apache.xmlbeans.xml.stream.XMLStreamException {
242: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
243: .newValidatingXMLInputStream(xis, type, null);
244: }
245:
246: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
247: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
248: org.apache.xmlbeans.XmlOptions options)
249: throws org.apache.xmlbeans.XmlException,
250: org.apache.xmlbeans.xml.stream.XMLStreamException {
251: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
252: .newValidatingXMLInputStream(xis, type, options);
253: }
254:
255: private Factory() {
256: } // No instance of this class allowed
257: }
258: }
|