View Javadoc
1   /*
2    * An XML document type.
3    * Localname: Organization
4    * Namespace: http://apply.grants.gov/forms/SF424-V1.0
5    * Java type: gov.grants.apply.forms.sf424V10.OrganizationDocument
6    *
7    * Automatically generated - do not modify.
8    */
9   package gov.grants.apply.forms.sf424V10;
10  
11  
12  /**
13   * A document containing one Organization(@http://apply.grants.gov/forms/SF424-V1.0) element.
14   *
15   * This is a complex type.
16   */
17  public interface OrganizationDocument extends org.apache.xmlbeans.XmlObject
18  {
19      public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
20          org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(OrganizationDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("organizationb601doctype");
21      
22      /**
23       * Gets the "Organization" element
24       */
25      gov.grants.apply.forms.sf424V10.OrganizationDocument.Organization getOrganization();
26      
27      /**
28       * Sets the "Organization" element
29       */
30      void setOrganization(gov.grants.apply.forms.sf424V10.OrganizationDocument.Organization organization);
31      
32      /**
33       * Appends and returns a new empty "Organization" element
34       */
35      gov.grants.apply.forms.sf424V10.OrganizationDocument.Organization addNewOrganization();
36      
37      /**
38       * An XML Organization(@http://apply.grants.gov/forms/SF424-V1.0).
39       *
40       * This is a complex type.
41       */
42      public interface Organization extends org.apache.xmlbeans.XmlObject
43      {
44          public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
45              org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Organization.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("organization42f0elemtype");
46          
47          /**
48           * Gets the "OrganizationName" element
49           */
50          java.lang.String getOrganizationName();
51          
52          /**
53           * Gets (as xml) the "OrganizationName" element
54           */
55          gov.grants.apply.system.globalV10.StringMin1Max120Type xgetOrganizationName();
56          
57          /**
58           * True if has "OrganizationName" element
59           */
60          boolean isSetOrganizationName();
61          
62          /**
63           * Sets the "OrganizationName" element
64           */
65          void setOrganizationName(java.lang.String organizationName);
66          
67          /**
68           * Sets (as xml) the "OrganizationName" element
69           */
70          void xsetOrganizationName(gov.grants.apply.system.globalV10.StringMin1Max120Type organizationName);
71          
72          /**
73           * Unsets the "OrganizationName" element
74           */
75          void unsetOrganizationName();
76          
77          /**
78           * Gets the "DUNSID" element
79           */
80          java.lang.String getDUNSID();
81          
82          /**
83           * Gets (as xml) the "DUNSID" element
84           */
85          gov.grants.apply.system.globalV10.StringMin1Max13Type xgetDUNSID();
86          
87          /**
88           * True if has "DUNSID" element
89           */
90          boolean isSetDUNSID();
91          
92          /**
93           * Sets the "DUNSID" element
94           */
95          void setDUNSID(java.lang.String dunsid);
96          
97          /**
98           * Sets (as xml) the "DUNSID" element
99           */
100         void xsetDUNSID(gov.grants.apply.system.globalV10.StringMin1Max13Type dunsid);
101         
102         /**
103          * Unsets the "DUNSID" element
104          */
105         void unsetDUNSID();
106         
107         /**
108          * Gets the "DepartmentName" element
109          */
110         java.lang.String getDepartmentName();
111         
112         /**
113          * Gets (as xml) the "DepartmentName" element
114          */
115         gov.grants.apply.system.globalV10.StringMin1Max30Type xgetDepartmentName();
116         
117         /**
118          * True if has "DepartmentName" element
119          */
120         boolean isSetDepartmentName();
121         
122         /**
123          * Sets the "DepartmentName" element
124          */
125         void setDepartmentName(java.lang.String departmentName);
126         
127         /**
128          * Sets (as xml) the "DepartmentName" element
129          */
130         void xsetDepartmentName(gov.grants.apply.system.globalV10.StringMin1Max30Type departmentName);
131         
132         /**
133          * Unsets the "DepartmentName" element
134          */
135         void unsetDepartmentName();
136         
137         /**
138          * Gets the "DivisionName" element
139          */
140         java.lang.String getDivisionName();
141         
142         /**
143          * Gets (as xml) the "DivisionName" element
144          */
145         gov.grants.apply.system.globalV10.StringMin1Max30Type xgetDivisionName();
146         
147         /**
148          * True if has "DivisionName" element
149          */
150         boolean isSetDivisionName();
151         
152         /**
153          * Sets the "DivisionName" element
154          */
155         void setDivisionName(java.lang.String divisionName);
156         
157         /**
158          * Sets (as xml) the "DivisionName" element
159          */
160         void xsetDivisionName(gov.grants.apply.system.globalV10.StringMin1Max30Type divisionName);
161         
162         /**
163          * Unsets the "DivisionName" element
164          */
165         void unsetDivisionName();
166         
167         /**
168          * Gets the "EmployerID" element
169          */
170         java.lang.String getEmployerID();
171         
172         /**
173          * Gets (as xml) the "EmployerID" element
174          */
175         gov.grants.apply.system.globalV10.StringMin1Max30Type xgetEmployerID();
176         
177         /**
178          * True if has "EmployerID" element
179          */
180         boolean isSetEmployerID();
181         
182         /**
183          * Sets the "EmployerID" element
184          */
185         void setEmployerID(java.lang.String employerID);
186         
187         /**
188          * Sets (as xml) the "EmployerID" element
189          */
190         void xsetEmployerID(gov.grants.apply.system.globalV10.StringMin1Max30Type employerID);
191         
192         /**
193          * Unsets the "EmployerID" element
194          */
195         void unsetEmployerID();
196         
197         /**
198          * A factory class with static methods for creating instances
199          * of this type.
200          */
201         
202         public static final class Factory
203         {
204             public static gov.grants.apply.forms.sf424V10.OrganizationDocument.Organization newInstance() {
205               return (gov.grants.apply.forms.sf424V10.OrganizationDocument.Organization) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
206             
207             public static gov.grants.apply.forms.sf424V10.OrganizationDocument.Organization newInstance(org.apache.xmlbeans.XmlOptions options) {
208               return (gov.grants.apply.forms.sf424V10.OrganizationDocument.Organization) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
209             
210             private Factory() { } // No instance of this class allowed
211         }
212     }
213     
214     /**
215      * A factory class with static methods for creating instances
216      * of this type.
217      */
218     
219     public static final class Factory
220     {
221         public static gov.grants.apply.forms.sf424V10.OrganizationDocument newInstance() {
222           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
223         
224         public static gov.grants.apply.forms.sf424V10.OrganizationDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
225           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
226         
227         /** @param xmlAsString the string value to parse */
228         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
229           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
230         
231         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
232           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
233         
234         /** @param file the file from which to load an xml document */
235         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
236           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
237         
238         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
239           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
240         
241         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
242           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
243         
244         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
245           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
246         
247         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
248           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
249         
250         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
251           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
252         
253         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
254           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
255         
256         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
257           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
258         
259         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
260           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
261         
262         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
263           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
264         
265         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
266           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
267         
268         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
269           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
270         
271         /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
272         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
273           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
274         
275         /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
276         public static gov.grants.apply.forms.sf424V10.OrganizationDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
277           return (gov.grants.apply.forms.sf424V10.OrganizationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
278         
279         /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
280         public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
281           return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
282         
283         /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
284         public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
285           return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
286         
287         private Factory() { } // No instance of this class allowed
288     }
289 }