Source Code Cross Referenced for GMLSchema.java in  » GIS » GeoTools-2.4.1 » org » geotools » gml3 » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.gml3 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


00001:        /*
00002:         *    GeoTools - OpenSource mapping toolkit
00003:         *    http://geotools.org
00004:         *    (C) 2002-2006, GeoTools Project Managment Committee (PMC)
00005:         *
00006:         *    This library is free software; you can redistribute it and/or
00007:         *    modify it under the terms of the GNU Lesser General Public
00008:         *    License as published by the Free Software Foundation;
00009:         *    version 2.1 of the License.
00010:         *
00011:         *    This library is distributed in the hope that it will be useful,
00012:         *    but WITHOUT ANY WARRANTY; without even the implied warranty of
00013:         *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014:         *    Lesser General Public License for more details.
00015:         */
00016:        package org.geotools.gml3;
00017:
00018:        import com.vividsolutions.jts.geom.Geometry;
00019:        import com.vividsolutions.jts.geom.LineString;
00020:        import com.vividsolutions.jts.geom.MultiLineString;
00021:        import com.vividsolutions.jts.geom.MultiPoint;
00022:        import com.vividsolutions.jts.geom.MultiPolygon;
00023:        import com.vividsolutions.jts.geom.Point;
00024:        import com.vividsolutions.jts.geom.Polygon;
00025:        import org.geotools.feature.AttributeType;
00026:        import org.geotools.feature.AttributeTypeFactory;
00027:        import org.geotools.feature.Feature;
00028:        import org.geotools.feature.FeatureCollection;
00029:        import org.geotools.feature.type.SchemaImpl;
00030:        import org.geotools.measure.Measure;
00031:
00032:        public class GMLSchema extends SchemaImpl {
00033:            /**
00034:             * <p>
00035:             *  <pre>
00036:             *   <code>
00037:             *  &lt;complexType name="TopoSurfaceType"&gt;
00038:             *      &lt;annotation&gt;
00039:             *          &lt;documentation&gt;The TopoSurface type and element represent a homogeneous topological expression, a set of directed faces, which if realised are isomorphic to a geometric surface primitive. The intended use of TopoSurface is to appear within a surface feature instance to express the structural and possibly geometric relationships of this surface to other features via the shared face definitions.&lt;/documentation&gt;
00040:             *      &lt;/annotation&gt;
00041:             *      &lt;complexContent&gt;
00042:             *          &lt;extension base="gml:AbstractTopologyType"&gt;
00043:             *              &lt;sequence&gt;
00044:             *                  &lt;element maxOccurs="unbounded" ref="gml:directedFace"/&gt;
00045:             *              &lt;/sequence&gt;
00046:             *          &lt;/extension&gt;
00047:             *      &lt;/complexContent&gt;
00048:             *  &lt;/complexType&gt;
00049:             *
00050:             *    </code>
00051:             *   </pre>
00052:             * </p>
00053:             *
00054:             * @generated
00055:             */
00056:            public static final AttributeType TOPOSURFACETYPE_TYPE = AttributeTypeFactory
00057:                    .newAttributeType("TopoSurfaceType", java.lang.Object.class);
00058:
00059:            /**
00060:             * <p>
00061:             *  <pre>
00062:             *   <code>
00063:             *  &lt;complexType name="VolumeType"&gt;
00064:             *      &lt;annotation&gt;
00065:             *          &lt;documentation&gt;Value of a spatial volume quantity, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a volume, such as cubic metres or cubic feet.&lt;/documentation&gt;
00066:             *      &lt;/annotation&gt;
00067:             *      &lt;simpleContent&gt;
00068:             *          &lt;restriction base="gml:MeasureType"/&gt;
00069:             *      &lt;/simpleContent&gt;
00070:             *  &lt;/complexType&gt;
00071:             *
00072:             *    </code>
00073:             *   </pre>
00074:             * </p>
00075:             *
00076:             * @generated
00077:             */
00078:            public static final AttributeType VOLUMETYPE_TYPE = AttributeTypeFactory
00079:                    .newAttributeType("VolumeType", java.lang.Object.class);
00080:
00081:            /**
00082:             * <p>
00083:             *  <pre>
00084:             *   <code>
00085:             *  &lt;complexType name="AbstractSolidType"&gt;
00086:             *      &lt;annotation&gt;
00087:             *          &lt;documentation&gt;An abstraction of a solid to support the different levels of complexity. A solid is always contiguous.&lt;/documentation&gt;
00088:             *      &lt;/annotation&gt;
00089:             *      &lt;complexContent&gt;
00090:             *          &lt;extension base="gml:AbstractGeometricPrimitiveType"/&gt;
00091:             *      &lt;/complexContent&gt;
00092:             *  &lt;/complexType&gt;
00093:             *
00094:             *    </code>
00095:             *   </pre>
00096:             * </p>
00097:             *
00098:             * @generated
00099:             */
00100:            public static final AttributeType ABSTRACTSOLIDTYPE_TYPE = AttributeTypeFactory
00101:                    .newAttributeType("AbstractSolidType",
00102:                            java.lang.Object.class);
00103:
00104:            /**
00105:             * <p>
00106:             *  <pre>
00107:             *   <code>
00108:             *  &lt;complexType name="EllipsoidalCSType"&gt;
00109:             *      &lt;annotation&gt;
00110:             *          &lt;documentation&gt;A two- or three-dimensional coordinate system in which position is specified by geodetic latitude, geodetic longitude, and (in the three-dimensional case) ellipsoidal height. An EllipsoidalCS shall have two or three usesAxis associations. &lt;/documentation&gt;
00111:             *      &lt;/annotation&gt;
00112:             *      &lt;complexContent&gt;
00113:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
00114:             *      &lt;/complexContent&gt;
00115:             *  &lt;/complexType&gt;
00116:             *
00117:             *    </code>
00118:             *   </pre>
00119:             * </p>
00120:             *
00121:             * @generated
00122:             */
00123:            public static final AttributeType ELLIPSOIDALCSTYPE_TYPE = AttributeTypeFactory
00124:                    .newAttributeType("EllipsoidalCSType",
00125:                            java.lang.Object.class);
00126:
00127:            /**
00128:             * <p>
00129:             *  <pre>
00130:             *   <code>
00131:             *  &lt;complexType name="PolarCSRefType"&gt;
00132:             *      &lt;annotation&gt;
00133:             *          &lt;documentation&gt;Association to a polar coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
00134:             *      &lt;/annotation&gt;
00135:             *      &lt;sequence minOccurs="0"&gt;
00136:             *          &lt;element ref="gml:PolarCS"/&gt;
00137:             *      &lt;/sequence&gt;
00138:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00139:             *  &lt;/complexType&gt;
00140:             *
00141:             *    </code>
00142:             *   </pre>
00143:             * </p>
00144:             *
00145:             * @generated
00146:             */
00147:            public static final AttributeType POLARCSREFTYPE_TYPE = AttributeTypeFactory
00148:                    .newAttributeType("PolarCSRefType", java.lang.Object.class);
00149:
00150:            /**
00151:             * <p>
00152:             *  <pre>
00153:             *   <code>
00154:             *  &lt;simpleType name="NameOrNull"&gt;
00155:             *      &lt;annotation&gt;
00156:             *          &lt;documentation&gt;Union of the XML Schema Name type and the GML Nulltype.  An element which uses this type may have content which is either a Name or a value from Nulltype.  Note that a "Name" may not contain whitespace.  &lt;/documentation&gt;
00157:             *      &lt;/annotation&gt;
00158:             *      &lt;union memberTypes="gml:NullEnumeration Name anyURI"/&gt;
00159:             *  &lt;/simpleType&gt;
00160:             *
00161:             *    </code>
00162:             *   </pre>
00163:             * </p>
00164:             *
00165:             * @generated
00166:             */
00167:            public static final AttributeType NAMEORNULL_TYPE = AttributeTypeFactory
00168:                    .newAttributeType("NameOrNull", java.lang.Object.class);
00169:
00170:            /**
00171:             * <p>
00172:             *  <pre>
00173:             *   <code>
00174:             *  &lt;complexType name="CompositeCurveType"&gt;
00175:             *      &lt;annotation&gt;
00176:             *          &lt;documentation&gt;A CompositeCurve is defined by a sequence of (orientable) curves such that the each curve in the sequence terminates at the start point of the subsequent curve in the list.&lt;/documentation&gt;
00177:             *      &lt;/annotation&gt;
00178:             *      &lt;complexContent&gt;
00179:             *          &lt;extension base="gml:AbstractCurveType"&gt;
00180:             *              &lt;sequence&gt;
00181:             *                  &lt;element maxOccurs="unbounded" ref="gml:curveMember"&gt;
00182:             *                      &lt;annotation&gt;
00183:             *                          &lt;documentation&gt;This element references or contains one curve in the composite curve. The curves are contiguous, the collection of curves is ordered.
00184:             *  NOTE: This definition allows for a nested structure, i.e. a CompositeCurve may use, for example, another CompositeCurve as a curve member.&lt;/documentation&gt;
00185:             *                      &lt;/annotation&gt;
00186:             *                  &lt;/element&gt;
00187:             *              &lt;/sequence&gt;
00188:             *          &lt;/extension&gt;
00189:             *      &lt;/complexContent&gt;
00190:             *  &lt;/complexType&gt;
00191:             *
00192:             *    </code>
00193:             *   </pre>
00194:             * </p>
00195:             *
00196:             * @generated
00197:             */
00198:            public static final AttributeType COMPOSITECURVETYPE_TYPE = AttributeTypeFactory
00199:                    .newAttributeType("CompositeCurveType",
00200:                            java.lang.Object.class);
00201:
00202:            /**
00203:             * <p>
00204:             *  <pre>
00205:             *   <code>
00206:             *  &lt;complexType name="GridLengthType"&gt;
00207:             *      &lt;annotation&gt;
00208:             *          &lt;documentation&gt;Value of a length (or distance) quantity in a grid, where the grid spacing does not have any associated physical units, or does not have a constant physical spacing. This grid length will often be used in a digital image grid, where the base units are likely to be pixel spacings. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for length along the axes of a grid, such as pixel spacings or grid spacings.&lt;/documentation&gt;
00209:             *      &lt;/annotation&gt;
00210:             *      &lt;simpleContent&gt;
00211:             *          &lt;restriction base="gml:MeasureType"/&gt;
00212:             *      &lt;/simpleContent&gt;
00213:             *  &lt;/complexType&gt;
00214:             *
00215:             *    </code>
00216:             *   </pre>
00217:             * </p>
00218:             *
00219:             * @generated
00220:             */
00221:            public static final AttributeType GRIDLENGTHTYPE_TYPE = AttributeTypeFactory
00222:                    .newAttributeType("GridLengthType", java.lang.Object.class);
00223:
00224:            /**
00225:             * <p>
00226:             *  <pre>
00227:             *   <code>
00228:             *  &lt;complexType name="MultiSolidCoverageType"&gt;
00229:             *      &lt;annotation&gt;
00230:             *          &lt;documentation&gt;A discrete coverage type whose domain is defined by a collection of Solids.&lt;/documentation&gt;
00231:             *      &lt;/annotation&gt;
00232:             *      &lt;complexContent&gt;
00233:             *          &lt;restriction base="gml:AbstractDiscreteCoverageType"&gt;
00234:             *              &lt;sequence&gt;
00235:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
00236:             *                  &lt;element minOccurs="0" ref="gml:boundedBy"/&gt;
00237:             *                  &lt;element ref="gml:multiSolidDomain"/&gt;
00238:             *                  &lt;element ref="gml:rangeSet"/&gt;
00239:             *                  &lt;element minOccurs="0" ref="gml:coverageFunction"/&gt;
00240:             *              &lt;/sequence&gt;
00241:             *          &lt;/restriction&gt;
00242:             *      &lt;/complexContent&gt;
00243:             *  &lt;/complexType&gt;
00244:             *
00245:             *    </code>
00246:             *   </pre>
00247:             * </p>
00248:             *
00249:             * @generated
00250:             */
00251:            public static final AttributeType MULTISOLIDCOVERAGETYPE_TYPE = AttributeTypeFactory
00252:                    .newAttributeType("MultiSolidCoverageType",
00253:                            java.lang.Object.class);
00254:
00255:            /**
00256:             * <p>
00257:             *  <pre>
00258:             *   <code>
00259:             *  &lt;complexType name="MultiGeometryType"&gt;
00260:             *      &lt;annotation&gt;
00261:             *          &lt;documentation&gt;A geometry collection must include one or more geometries, referenced through geometryMember elements.&lt;/documentation&gt;
00262:             *      &lt;/annotation&gt;
00263:             *      &lt;complexContent&gt;
00264:             *          &lt;extension base="gml:AbstractGeometricAggregateType"&gt;
00265:             *              &lt;sequence&gt;
00266:             *                  &lt;annotation&gt;
00267:             *                      &lt;documentation&gt;The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection.
00268:             *  NOTE: Array properties cannot reference remote geometry elements.&lt;/documentation&gt;
00269:             *                  &lt;/annotation&gt;
00270:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:geometryMember"/&gt;
00271:             *                  &lt;element minOccurs="0" ref="gml:geometryMembers"/&gt;
00272:             *              &lt;/sequence&gt;
00273:             *          &lt;/extension&gt;
00274:             *      &lt;/complexContent&gt;
00275:             *  &lt;/complexType&gt;
00276:             *
00277:             *    </code>
00278:             *   </pre>
00279:             * </p>
00280:             *
00281:             * @generated
00282:             */
00283:            public static final AttributeType MULTIGEOMETRYTYPE_TYPE = AttributeTypeFactory
00284:                    .newAttributeType("MultiGeometryType",
00285:                            java.lang.Object.class);
00286:
00287:            /**
00288:             * <p>
00289:             *  <pre>
00290:             *   <code>
00291:             *  &lt;complexType name="AbstractRingPropertyType"&gt;
00292:             *      &lt;annotation&gt;
00293:             *          &lt;documentation&gt;Encapsulates a ring to represent the surface boundary property of a surface.&lt;/documentation&gt;
00294:             *      &lt;/annotation&gt;
00295:             *      &lt;sequence&gt;
00296:             *          &lt;element ref="gml:_Ring"/&gt;
00297:             *      &lt;/sequence&gt;
00298:             *  &lt;/complexType&gt;
00299:             *
00300:             *    </code>
00301:             *   </pre>
00302:             * </p>
00303:             *
00304:             * @generated
00305:             */
00306:            public static final AttributeType ABSTRACTRINGPROPERTYTYPE_TYPE = AttributeTypeFactory
00307:                    .newAttributeType("AbstractRingPropertyType",
00308:                            java.lang.Object.class);
00309:
00310:            /**
00311:             * <p>
00312:             *  <pre>
00313:             *   <code>
00314:             *  &lt;complexType name="FormulaType"&gt;
00315:             *      &lt;annotation&gt;
00316:             *          &lt;documentation&gt;Paremeters of a simple formula by which a value using this unit of measure can be converted to the corresponding value using the preferred unit of measure. The formula element contains elements a, b, c and d, whose values use the XML Schema type "double". These values are used in the formula y = (a + bx) / (c + dx), where x is a value using this unit, and y is the corresponding value using the preferred unit. The elements a and d are optional, and if values are not provided, those parameters are considered to be zero. If values are not provided for both a and d, the formula is equivalent to a fraction with numerator and denominator parameters.&lt;/documentation&gt;
00317:             *      &lt;/annotation&gt;
00318:             *      &lt;sequence&gt;
00319:             *          &lt;element minOccurs="0" name="a" type="double"/&gt;
00320:             *          &lt;element name="b" type="double"/&gt;
00321:             *          &lt;element name="c" type="double"/&gt;
00322:             *          &lt;element minOccurs="0" name="d" type="double"/&gt;
00323:             *      &lt;/sequence&gt;
00324:             *  &lt;/complexType&gt;
00325:             *
00326:             *    </code>
00327:             *   </pre>
00328:             * </p>
00329:             *
00330:             * @generated
00331:             */
00332:            public static final AttributeType FORMULATYPE_TYPE = AttributeTypeFactory
00333:                    .newAttributeType("FormulaType", java.lang.Object.class);
00334:
00335:            /**
00336:             * <p>
00337:             *  <pre>
00338:             *   <code>
00339:             *  &lt;complexType name="SymbolType"&gt;
00340:             *      &lt;annotation&gt;
00341:             *          &lt;documentation&gt;[complexType of] The symbol property. Allows for remote referencing of symbols.&lt;/documentation&gt;
00342:             *      &lt;/annotation&gt;
00343:             *      &lt;sequence&gt;
00344:             *          &lt;any maxOccurs="unbounded" minOccurs="0" processContents="skip"/&gt;
00345:             *      &lt;/sequence&gt;
00346:             *      &lt;attribute name="symbolType" type="gml:SymbolTypeEnumeration" use="required"/&gt;
00347:             *      &lt;attribute ref="gml:transform" use="optional"/&gt;
00348:             *      &lt;attribute name="about" type="anyURI" use="optional"/&gt;
00349:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00350:             *  &lt;/complexType&gt;
00351:             *
00352:             *    </code>
00353:             *   </pre>
00354:             * </p>
00355:             *
00356:             * @generated
00357:             */
00358:            public static final AttributeType SYMBOLTYPE_TYPE = AttributeTypeFactory
00359:                    .newAttributeType("SymbolType", java.lang.Object.class);
00360:
00361:            /**
00362:             * <p>
00363:             *  <pre>
00364:             *   <code>
00365:             *  &lt;complexType name="EllipsoidalCSRefType"&gt;
00366:             *      &lt;annotation&gt;
00367:             *          &lt;documentation&gt;Association to an ellipsoidal coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
00368:             *      &lt;/annotation&gt;
00369:             *      &lt;sequence minOccurs="0"&gt;
00370:             *          &lt;element ref="gml:EllipsoidalCS"/&gt;
00371:             *      &lt;/sequence&gt;
00372:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00373:             *  &lt;/complexType&gt;
00374:             *
00375:             *    </code>
00376:             *   </pre>
00377:             * </p>
00378:             *
00379:             * @generated
00380:             */
00381:            public static final AttributeType ELLIPSOIDALCSREFTYPE_TYPE = AttributeTypeFactory
00382:                    .newAttributeType("EllipsoidalCSRefType",
00383:                            java.lang.Object.class);
00384:
00385:            /**
00386:             * <p>
00387:             *  <pre>
00388:             *   <code>
00389:             *  &lt;complexType name="PointType"&gt;
00390:             *      &lt;annotation&gt;
00391:             *          &lt;documentation&gt;A Point is defined by a single coordinate tuple.&lt;/documentation&gt;
00392:             *      &lt;/annotation&gt;
00393:             *      &lt;complexContent&gt;
00394:             *          &lt;extension base="gml:AbstractGeometricPrimitiveType"&gt;
00395:             *              &lt;sequence&gt;
00396:             *                  &lt;choice&gt;
00397:             *                      &lt;annotation&gt;
00398:             *                          &lt;documentation&gt;GML supports two different ways to specify the direct poisiton of a point. 1. The "pos" element is of type
00399:             *                                                          DirectPositionType.&lt;/documentation&gt;
00400:             *                      &lt;/annotation&gt;
00401:             *                      &lt;element ref="gml:pos"/&gt;
00402:             *                      &lt;element ref="gml:coordinates"&gt;
00403:             *                          &lt;annotation&gt;
00404:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0 for coordinates with ordinate values that are numbers. Use "pos"
00405:             *                                                                  instead. The "coordinates" element shall only be used for coordinates with ordinates that require a string
00406:             *                                                                  representation, e.g. DMS representations.&lt;/documentation&gt;
00407:             *                          &lt;/annotation&gt;
00408:             *                      &lt;/element&gt;
00409:             *                      &lt;element ref="gml:coord"&gt;
00410:             *                          &lt;annotation&gt;
00411:             *                              &lt;documentation&gt;Deprecated with GML version 3.0. Use "pos" instead. The "coord" element is included for
00412:             *                                                                  backwards compatibility with GML 2.&lt;/documentation&gt;
00413:             *                          &lt;/annotation&gt;
00414:             *                      &lt;/element&gt;
00415:             *                  &lt;/choice&gt;
00416:             *              &lt;/sequence&gt;
00417:             *          &lt;/extension&gt;
00418:             *      &lt;/complexContent&gt;
00419:             *  &lt;/complexType&gt;
00420:             *
00421:             *    </code>
00422:             *   </pre>
00423:             * </p>
00424:             *
00425:             * @generated
00426:             */
00427:            public static final AttributeType POINTTYPE_TYPE = AttributeTypeFactory
00428:                    .newAttributeType("PointType", Point.class);
00429:
00430:            /**
00431:             * <p>
00432:             *  <pre>
00433:             *   <code>
00434:             *  &lt;complexType name="MultiCurveCoverageType"&gt;
00435:             *      &lt;annotation&gt;
00436:             *          &lt;documentation&gt;A discrete coverage type whose domain is defined by a collection of curves.&lt;/documentation&gt;
00437:             *      &lt;/annotation&gt;
00438:             *      &lt;complexContent&gt;
00439:             *          &lt;restriction base="gml:AbstractDiscreteCoverageType"&gt;
00440:             *              &lt;sequence&gt;
00441:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
00442:             *                  &lt;element minOccurs="0" ref="gml:boundedBy"/&gt;
00443:             *                  &lt;element ref="gml:multiCurveDomain"/&gt;
00444:             *                  &lt;element ref="gml:rangeSet"/&gt;
00445:             *                  &lt;element minOccurs="0" ref="gml:coverageFunction"/&gt;
00446:             *              &lt;/sequence&gt;
00447:             *          &lt;/restriction&gt;
00448:             *      &lt;/complexContent&gt;
00449:             *  &lt;/complexType&gt;
00450:             *
00451:             *    </code>
00452:             *   </pre>
00453:             * </p>
00454:             *
00455:             * @generated
00456:             */
00457:            public static final AttributeType MULTICURVECOVERAGETYPE_TYPE = AttributeTypeFactory
00458:                    .newAttributeType("MultiCurveCoverageType",
00459:                            java.lang.Object.class);
00460:
00461:            /**
00462:             * <p>
00463:             *  <pre>
00464:             *   <code>
00465:             *  &lt;complexType name="VerticalCSRefType"&gt;
00466:             *      &lt;annotation&gt;
00467:             *          &lt;documentation&gt;Association to a vertical coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
00468:             *      &lt;/annotation&gt;
00469:             *      &lt;sequence minOccurs="0"&gt;
00470:             *          &lt;element ref="gml:VerticalCS"/&gt;
00471:             *      &lt;/sequence&gt;
00472:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00473:             *  &lt;/complexType&gt;
00474:             *
00475:             *    </code>
00476:             *   </pre>
00477:             * </p>
00478:             *
00479:             * @generated
00480:             */
00481:            public static final AttributeType VERTICALCSREFTYPE_TYPE = AttributeTypeFactory
00482:                    .newAttributeType("VerticalCSRefType",
00483:                            java.lang.Object.class);
00484:
00485:            /**
00486:             * <p>
00487:             *  <pre>
00488:             *   <code>
00489:             *  &lt;complexType name="RingPropertyType"&gt;
00490:             *      &lt;annotation&gt;
00491:             *          &lt;documentation&gt;Encapsulates a ring to represent properties in features or geometry collections.&lt;/documentation&gt;
00492:             *      &lt;/annotation&gt;
00493:             *      &lt;sequence&gt;
00494:             *          &lt;element ref="gml:Ring"/&gt;
00495:             *      &lt;/sequence&gt;
00496:             *  &lt;/complexType&gt;
00497:             *
00498:             *    </code>
00499:             *   </pre>
00500:             * </p>
00501:             *
00502:             * @generated
00503:             */
00504:            public static final AttributeType RINGPROPERTYTYPE_TYPE = AttributeTypeFactory
00505:                    .newAttributeType("RingPropertyType",
00506:                            java.lang.Object.class);
00507:
00508:            /**
00509:             * <p>
00510:             *  <pre>
00511:             *   <code>
00512:             *  &lt;complexType name="GeodeticDatumRefType"&gt;
00513:             *      &lt;annotation&gt;
00514:             *          &lt;documentation&gt;Association to a geodetic datum, either referencing or containing the definition of that datum. &lt;/documentation&gt;
00515:             *      &lt;/annotation&gt;
00516:             *      &lt;sequence minOccurs="0"&gt;
00517:             *          &lt;element ref="gml:GeodeticDatum"/&gt;
00518:             *      &lt;/sequence&gt;
00519:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00520:             *  &lt;/complexType&gt;
00521:             *
00522:             *    </code>
00523:             *   </pre>
00524:             * </p>
00525:             *
00526:             * @generated
00527:             */
00528:            public static final AttributeType GEODETICDATUMREFTYPE_TYPE = AttributeTypeFactory
00529:                    .newAttributeType("GeodeticDatumRefType",
00530:                            java.lang.Object.class);
00531:
00532:            /**
00533:             * <p>
00534:             *  <pre>
00535:             *   <code>
00536:             *  &lt;complexType name="CompositeSurfaceType"&gt;
00537:             *      &lt;annotation&gt;
00538:             *          &lt;documentation&gt;A CompositeSurface is defined by a set of orientable surfaces. A composite surface is geometry type with all the geometric properties of a (primitive) surface. Essentially, a composite surface is a collection of surfaces that join in pairs on common boundary curves and which, when considered as a whole, form a single surface.&lt;/documentation&gt;
00539:             *      &lt;/annotation&gt;
00540:             *      &lt;complexContent&gt;
00541:             *          &lt;extension base="gml:AbstractSurfaceType"&gt;
00542:             *              &lt;sequence&gt;
00543:             *                  &lt;element maxOccurs="unbounded" ref="gml:surfaceMember"&gt;
00544:             *                      &lt;annotation&gt;
00545:             *                          &lt;documentation&gt;This element references or contains one surface in the composite surface. The surfaces are contiguous.
00546:             *  NOTE: This definition allows for a nested structure, i.e. a CompositeSurface may use, for example, another CompositeSurface as a member.&lt;/documentation&gt;
00547:             *                      &lt;/annotation&gt;
00548:             *                  &lt;/element&gt;
00549:             *              &lt;/sequence&gt;
00550:             *          &lt;/extension&gt;
00551:             *      &lt;/complexContent&gt;
00552:             *  &lt;/complexType&gt;
00553:             *
00554:             *    </code>
00555:             *   </pre>
00556:             * </p>
00557:             *
00558:             * @generated
00559:             */
00560:            public static final AttributeType COMPOSITESURFACETYPE_TYPE = AttributeTypeFactory
00561:                    .newAttributeType("CompositeSurfaceType",
00562:                            java.lang.Object.class);
00563:
00564:            /**
00565:             * <p>
00566:             *  <pre>
00567:             *   <code>
00568:             *  &lt;complexType name="ValuePropertyType"&gt;
00569:             *      &lt;annotation&gt;
00570:             *          &lt;documentation&gt;GML property which refers to, or contains, a Value&lt;/documentation&gt;
00571:             *      &lt;/annotation&gt;
00572:             *      &lt;sequence minOccurs="0"&gt;
00573:             *          &lt;group ref="gml:Value"/&gt;
00574:             *      &lt;/sequence&gt;
00575:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00576:             *  &lt;/complexType&gt;
00577:             *
00578:             *    </code>
00579:             *   </pre>
00580:             * </p>
00581:             *
00582:             * @generated
00583:             */
00584:            public static final AttributeType VALUEPROPERTYTYPE_TYPE = AttributeTypeFactory
00585:                    .newAttributeType("ValuePropertyType",
00586:                            java.lang.Object.class);
00587:
00588:            /**
00589:             * <p>
00590:             *  <pre>
00591:             *   <code>
00592:             *  &lt;complexType name="GeneralConversionRefType"&gt;
00593:             *      &lt;annotation&gt;
00594:             *          &lt;documentation&gt;Association to a general conversion, either referencing or containing the definition of that conversion. &lt;/documentation&gt;
00595:             *      &lt;/annotation&gt;
00596:             *      &lt;sequence minOccurs="0"&gt;
00597:             *          &lt;element ref="gml:_GeneralConversion"/&gt;
00598:             *      &lt;/sequence&gt;
00599:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00600:             *  &lt;/complexType&gt;
00601:             *
00602:             *    </code>
00603:             *   </pre>
00604:             * </p>
00605:             *
00606:             * @generated
00607:             */
00608:            public static final AttributeType GENERALCONVERSIONREFTYPE_TYPE = AttributeTypeFactory
00609:                    .newAttributeType("GeneralConversionRefType",
00610:                            java.lang.Object.class);
00611:
00612:            /**
00613:             * <p>
00614:             *  <pre>
00615:             *   <code>
00616:             *  &lt;complexType name="BaseUnitType"&gt;
00617:             *      &lt;annotation&gt;
00618:             *          &lt;documentation&gt;Definition of a unit of measure which is a base unit from the system of units.  A base unit cannot be derived by combination of other base units within this system.  Sometimes known as "fundamental unit".&lt;/documentation&gt;
00619:             *      &lt;/annotation&gt;
00620:             *      &lt;complexContent&gt;
00621:             *          &lt;extension base="gml:UnitDefinitionType"&gt;
00622:             *              &lt;sequence&gt;
00623:             *                  &lt;element name="unitsSystem" type="gml:ReferenceType"/&gt;
00624:             *              &lt;/sequence&gt;
00625:             *          &lt;/extension&gt;
00626:             *      &lt;/complexContent&gt;
00627:             *  &lt;/complexType&gt;
00628:             *
00629:             *    </code>
00630:             *   </pre>
00631:             * </p>
00632:             *
00633:             * @generated
00634:             */
00635:            public static final AttributeType BASEUNITTYPE_TYPE = AttributeTypeFactory
00636:                    .newAttributeType("BaseUnitType", java.lang.Object.class);
00637:
00638:            /**
00639:             * <p>
00640:             *  <pre>
00641:             *   <code>
00642:             *  &lt;complexType abstract="true" name="AbstractGeneralConversionType"&gt;
00643:             *      &lt;annotation&gt;
00644:             *          &lt;documentation&gt;An abstract operation on coordinates that does not include any change of datum. The best-known example of a coordinate conversion is a map projection. The parameters describing coordinate conversions are defined rather than empirically derived. Note that some conversions have no parameters.
00645:             *
00646:             *  This abstract complexType is expected to be extended for well-known operation methods with many Conversion instances, in Application Schemas that define operation-method-specialized element names and contents. This conversion uses an operation method, usually with associated parameter values. However, operation methods and parameter values are directly associated with concrete subtypes, not with this abstract type. All concrete types derived from this type shall extend this type to include a "usesMethod" element that references the "OperationMethod" element. Similarly, all concrete types derived from this type shall extend this type to include zero or more elements each named "uses...Value" that each use the type of an element substitutable for the "_generalParameterValue" element. &lt;/documentation&gt;
00647:             *      &lt;/annotation&gt;
00648:             *      &lt;complexContent&gt;
00649:             *          &lt;restriction base="gml:AbstractCoordinateOperationType"&gt;
00650:             *              &lt;sequence&gt;
00651:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
00652:             *                  &lt;element ref="gml:coordinateOperationName"/&gt;
00653:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:coordinateOperationID"/&gt;
00654:             *                  &lt;element minOccurs="0" ref="gml:remarks"/&gt;
00655:             *                  &lt;element minOccurs="0" ref="gml:validArea"/&gt;
00656:             *                  &lt;element minOccurs="0" ref="gml:scope"/&gt;
00657:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_positionalAccuracy"/&gt;
00658:             *              &lt;/sequence&gt;
00659:             *              &lt;attribute ref="gml:id" use="required"/&gt;
00660:             *          &lt;/restriction&gt;
00661:             *      &lt;/complexContent&gt;
00662:             *  &lt;/complexType&gt;
00663:             *
00664:             *    </code>
00665:             *   </pre>
00666:             * </p>
00667:             *
00668:             * @generated
00669:             */
00670:            public static final AttributeType ABSTRACTGENERALCONVERSIONTYPE_TYPE = AttributeTypeFactory
00671:                    .newAttributeType("AbstractGeneralConversionType",
00672:                            java.lang.Object.class);
00673:
00674:            /**
00675:             * <p>
00676:             *  <pre>
00677:             *   <code>
00678:             *  &lt;simpleType name="TimeIndeterminateValueType"&gt;
00679:             *      &lt;annotation&gt;
00680:             *          &lt;documentation xml:lang="en"&gt;This enumerated data type specifies values for indeterminate positions.&lt;/documentation&gt;
00681:             *      &lt;/annotation&gt;
00682:             *      &lt;restriction base="string"&gt;
00683:             *          &lt;enumeration value="after"/&gt;
00684:             *          &lt;enumeration value="before"/&gt;
00685:             *          &lt;enumeration value="now"/&gt;
00686:             *          &lt;enumeration value="unknown"/&gt;
00687:             *      &lt;/restriction&gt;
00688:             *  &lt;/simpleType&gt;
00689:             *
00690:             *    </code>
00691:             *   </pre>
00692:             * </p>
00693:             *
00694:             * @generated
00695:             */
00696:            public static final AttributeType TIMEINDETERMINATEVALUETYPE_TYPE = AttributeTypeFactory
00697:                    .newAttributeType("TimeIndeterminateValueType",
00698:                            java.lang.Object.class);
00699:
00700:            /**
00701:             * <p>
00702:             *  <pre>
00703:             *   <code>
00704:             *  &lt;simpleType name="QueryGrammarEnumeration"&gt;
00705:             *      &lt;annotation&gt;
00706:             *          &lt;documentation&gt;Used to specify the grammar of the feature query mechanism.&lt;/documentation&gt;
00707:             *      &lt;/annotation&gt;
00708:             *      &lt;restriction base="string"&gt;
00709:             *          &lt;enumeration value="xpath"/&gt;
00710:             *          &lt;enumeration value="xquery"/&gt;
00711:             *          &lt;enumeration value="other"/&gt;
00712:             *      &lt;/restriction&gt;
00713:             *  &lt;/simpleType&gt;
00714:             *
00715:             *    </code>
00716:             *   </pre>
00717:             * </p>
00718:             *
00719:             * @generated
00720:             */
00721:            public static final AttributeType QUERYGRAMMARENUMERATION_TYPE = AttributeTypeFactory
00722:                    .newAttributeType("QueryGrammarEnumeration",
00723:                            java.lang.Object.class);
00724:
00725:            /**
00726:             * <p>
00727:             *  <pre>
00728:             *   <code>
00729:             *  &lt;simpleType name="LineTypeType"&gt;
00730:             *      &lt;annotation&gt;
00731:             *          &lt;documentation&gt;Graph-specific styling property.&lt;/documentation&gt;
00732:             *      &lt;/annotation&gt;
00733:             *      &lt;restriction base="string"&gt;
00734:             *          &lt;enumeration value="STRAIGHT"/&gt;
00735:             *          &lt;enumeration value="BENT"/&gt;
00736:             *      &lt;/restriction&gt;
00737:             *  &lt;/simpleType&gt;
00738:             *
00739:             *    </code>
00740:             *   </pre>
00741:             * </p>
00742:             *
00743:             * @generated
00744:             */
00745:            public static final AttributeType LINETYPETYPE_TYPE = AttributeTypeFactory
00746:                    .newAttributeType("LineTypeType", java.lang.Object.class);
00747:
00748:            /**
00749:             * <p>
00750:             *  <pre>
00751:             *   <code>
00752:             *  &lt;complexType name="DerivedCRSType"&gt;
00753:             *      &lt;annotation&gt;
00754:             *          &lt;documentation&gt;A coordinate reference system that is defined by its coordinate conversion from another coordinate reference system but is not a projected coordinate reference system. This category includes coordinate reference systems derived from a projected coordinate reference system. &lt;/documentation&gt;
00755:             *      &lt;/annotation&gt;
00756:             *      &lt;complexContent&gt;
00757:             *          &lt;extension base="gml:AbstractGeneralDerivedCRSType"&gt;
00758:             *              &lt;sequence&gt;
00759:             *                  &lt;element ref="gml:derivedCRSType"/&gt;
00760:             *                  &lt;element ref="gml:usesCS"/&gt;
00761:             *              &lt;/sequence&gt;
00762:             *          &lt;/extension&gt;
00763:             *      &lt;/complexContent&gt;
00764:             *  &lt;/complexType&gt;
00765:             *
00766:             *    </code>
00767:             *   </pre>
00768:             * </p>
00769:             *
00770:             * @generated
00771:             */
00772:            public static final AttributeType DERIVEDCRSTYPE_TYPE = AttributeTypeFactory
00773:                    .newAttributeType("DerivedCRSType", java.lang.Object.class);
00774:
00775:            /**
00776:             * <p>
00777:             *  <pre>
00778:             *   <code>
00779:             *  &lt;complexType abstract="true" name="AbstractDatumType"&gt;
00780:             *      &lt;annotation&gt;
00781:             *          &lt;documentation&gt;A datum specifies the relationship of a coordinate system to the earth, thus creating a coordinate reference system. A datum uses a parameter or set of parameters that determine the location of the origin of the coordinate reference system. Each datum subtype can be associated with only specific types of coordinate systems. This abstract complexType shall not be used, extended, or restricted, in an Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document. &lt;/documentation&gt;
00782:             *      &lt;/annotation&gt;
00783:             *      &lt;complexContent&gt;
00784:             *          &lt;extension base="gml:AbstractDatumBaseType"&gt;
00785:             *              &lt;sequence&gt;
00786:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:datumID"&gt;
00787:             *                      &lt;annotation&gt;
00788:             *                          &lt;documentation&gt;Set of alternative identifications of this datum. The first datumID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
00789:             *                      &lt;/annotation&gt;
00790:             *                  &lt;/element&gt;
00791:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
00792:             *                      &lt;annotation&gt;
00793:             *                          &lt;documentation&gt;Comments on this reference system, including source information. &lt;/documentation&gt;
00794:             *                      &lt;/annotation&gt;
00795:             *                  &lt;/element&gt;
00796:             *                  &lt;element minOccurs="0" ref="gml:anchorPoint"/&gt;
00797:             *                  &lt;element minOccurs="0" ref="gml:realizationEpoch"/&gt;
00798:             *                  &lt;element minOccurs="0" ref="gml:validArea"/&gt;
00799:             *                  &lt;element minOccurs="0" ref="gml:scope"/&gt;
00800:             *              &lt;/sequence&gt;
00801:             *          &lt;/extension&gt;
00802:             *      &lt;/complexContent&gt;
00803:             *  &lt;/complexType&gt;
00804:             *
00805:             *    </code>
00806:             *   </pre>
00807:             * </p>
00808:             *
00809:             * @generated
00810:             */
00811:            public static final AttributeType ABSTRACTDATUMTYPE_TYPE = AttributeTypeFactory
00812:                    .newAttributeType("AbstractDatumType",
00813:                            java.lang.Object.class);
00814:
00815:            /**
00816:             * <p>
00817:             *  <pre>
00818:             *   <code>
00819:             *  &lt;simpleType name="integerList"&gt;
00820:             *      &lt;annotation&gt;
00821:             *          &lt;documentation&gt;XML List based on XML Schema integer type.  An element of this type contains a space-separated list of integer values&lt;/documentation&gt;
00822:             *      &lt;/annotation&gt;
00823:             *      &lt;list itemType="integer"/&gt;
00824:             *  &lt;/simpleType&gt;
00825:             *
00826:             *    </code>
00827:             *   </pre>
00828:             * </p>
00829:             *
00830:             * @generated
00831:             */
00832:            public static final AttributeType INTEGERLIST_TYPE = AttributeTypeFactory
00833:                    .newAttributeType("integerList", java.lang.Object.class);
00834:
00835:            /**
00836:             * <p>
00837:             *  <pre>
00838:             *   <code>
00839:             *  &lt;complexType name="DirectedObservationType"&gt;
00840:             *      &lt;complexContent&gt;
00841:             *          &lt;extension base="gml:ObservationType"&gt;
00842:             *              &lt;sequence&gt;
00843:             *                  &lt;element ref="gml:direction"/&gt;
00844:             *              &lt;/sequence&gt;
00845:             *          &lt;/extension&gt;
00846:             *      &lt;/complexContent&gt;
00847:             *  &lt;/complexType&gt;
00848:             *
00849:             *    </code>
00850:             *   </pre>
00851:             * </p>
00852:             *
00853:             * @generated
00854:             */
00855:            public static final AttributeType DIRECTEDOBSERVATIONTYPE_TYPE = AttributeTypeFactory
00856:                    .newAttributeType("DirectedObservationType",
00857:                            java.lang.Object.class);
00858:
00859:            /**
00860:             * <p>
00861:             *  <pre>
00862:             *   <code>
00863:             *  &lt;complexType name="TimeCalendarType"&gt;
00864:             *      &lt;annotation&gt;
00865:             *          &lt;documentation xml:lang="en"&gt;A calendar is a discrete temporal reference system
00866:             *        that provides a basis for defining temporal position to a resolution of one day.
00867:             *        A single calendar may reference more than one calendar era.&lt;/documentation&gt;
00868:             *      &lt;/annotation&gt;
00869:             *      &lt;complexContent&gt;
00870:             *          &lt;extension base="gml:AbstractTimeReferenceSystemType"&gt;
00871:             *              &lt;sequence&gt;
00872:             *                  &lt;element maxOccurs="unbounded" name="referenceFrame" type="gml:TimeCalendarEraPropertyType"&gt;
00873:             *                      &lt;annotation&gt;
00874:             *                          &lt;documentation&gt;Link to the CalendarEras that it uses as a reference for dating.&lt;/documentation&gt;
00875:             *                      &lt;/annotation&gt;
00876:             *                  &lt;/element&gt;
00877:             *              &lt;/sequence&gt;
00878:             *          &lt;/extension&gt;
00879:             *      &lt;/complexContent&gt;
00880:             *  &lt;/complexType&gt;
00881:             *
00882:             *    </code>
00883:             *   </pre>
00884:             * </p>
00885:             *
00886:             * @generated
00887:             */
00888:            public static final AttributeType TIMECALENDARTYPE_TYPE = AttributeTypeFactory
00889:                    .newAttributeType("TimeCalendarType",
00890:                            java.lang.Object.class);
00891:
00892:            /**
00893:             * <p>
00894:             *  <pre>
00895:             *   <code>
00896:             *  &lt;complexType name="IsolatedPropertyType"&gt;
00897:             *      &lt;choice minOccurs="0"&gt;
00898:             *          &lt;element ref="gml:Node"/&gt;
00899:             *          &lt;element ref="gml:Edge"/&gt;
00900:             *      &lt;/choice&gt;
00901:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00902:             *  &lt;/complexType&gt;
00903:             *
00904:             *    </code>
00905:             *   </pre>
00906:             * </p>
00907:             *
00908:             * @generated
00909:             */
00910:            public static final AttributeType ISOLATEDPROPERTYTYPE_TYPE = AttributeTypeFactory
00911:                    .newAttributeType("IsolatedPropertyType",
00912:                            java.lang.Object.class);
00913:
00914:            /**
00915:             * <p>
00916:             *  <pre>
00917:             *   <code>
00918:             *  &lt;complexType name="GridLimitsType"&gt;
00919:             *      &lt;sequence&gt;
00920:             *          &lt;element name="GridEnvelope" type="gml:GridEnvelopeType"/&gt;
00921:             *      &lt;/sequence&gt;
00922:             *  &lt;/complexType&gt;
00923:             *
00924:             *    </code>
00925:             *   </pre>
00926:             * </p>
00927:             *
00928:             * @generated
00929:             */
00930:            public static final AttributeType GRIDLIMITSTYPE_TYPE = AttributeTypeFactory
00931:                    .newAttributeType("GridLimitsType", java.lang.Object.class);
00932:
00933:            /**
00934:             * <p>
00935:             *  <pre>
00936:             *   <code>
00937:             *  &lt;complexType name="CompositeSolidType"&gt;
00938:             *      &lt;annotation&gt;
00939:             *          &lt;documentation&gt;A composite solid is a geometry type with all the geometric properties of a (primitive) solid.
00940:             *                                  Essentially, a composite solid is a collection of solids that join in pairs on common boundary surfaces and which, when considered as a whole, form a single solid.&lt;/documentation&gt;
00941:             *      &lt;/annotation&gt;
00942:             *      &lt;complexContent&gt;
00943:             *          &lt;extension base="gml:AbstractSolidType"&gt;
00944:             *              &lt;sequence&gt;
00945:             *                  &lt;element maxOccurs="unbounded" ref="gml:solidMember"&gt;
00946:             *                      &lt;annotation&gt;
00947:             *                          &lt;appinfo&gt;
00948:             *                              &lt;sch:pattern name="Check either href or content not both"&gt;
00949:             *                                  &lt;sch:rule context="gml:solidMember"&gt;
00950:             *                                      &lt;sch:extends rule="hrefOrContent"/&gt;
00951:             *                                  &lt;/sch:rule&gt;
00952:             *                              &lt;/sch:pattern&gt;
00953:             *                          &lt;/appinfo&gt;
00954:             *                          &lt;documentation&gt;This element references or contains one solid in the composite solid. The solids are contiguous.
00955:             *  NOTE: This definition allows for a nested structure, i.e. a CompositeSolid may use, for example, another CompositeSolid as a member.&lt;/documentation&gt;
00956:             *                      &lt;/annotation&gt;
00957:             *                  &lt;/element&gt;
00958:             *              &lt;/sequence&gt;
00959:             *          &lt;/extension&gt;
00960:             *      &lt;/complexContent&gt;
00961:             *  &lt;/complexType&gt;
00962:             *
00963:             *    </code>
00964:             *   </pre>
00965:             * </p>
00966:             *
00967:             * @generated
00968:             */
00969:            public static final AttributeType COMPOSITESOLIDTYPE_TYPE = AttributeTypeFactory
00970:                    .newAttributeType("CompositeSolidType",
00971:                            java.lang.Object.class);
00972:
00973:            /**
00974:             * <p>
00975:             *  <pre>
00976:             *   <code>
00977:             *  &lt;complexType name="OperationParameterRefType"&gt;
00978:             *      &lt;annotation&gt;
00979:             *          &lt;documentation&gt;Association to an operation parameter, either referencing or containing the definition of that parameter. &lt;/documentation&gt;
00980:             *      &lt;/annotation&gt;
00981:             *      &lt;sequence minOccurs="0"&gt;
00982:             *          &lt;element ref="gml:OperationParameter"/&gt;
00983:             *      &lt;/sequence&gt;
00984:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
00985:             *  &lt;/complexType&gt;
00986:             *
00987:             *    </code>
00988:             *   </pre>
00989:             * </p>
00990:             *
00991:             * @generated
00992:             */
00993:            public static final AttributeType OPERATIONPARAMETERREFTYPE_TYPE = AttributeTypeFactory
00994:                    .newAttributeType("OperationParameterRefType",
00995:                            java.lang.Object.class);
00996:
00997:            /**
00998:             * <p>
00999:             *  <pre>
01000:             *   <code>
01001:             *  &lt;complexType name="SecondDefiningParameterType"&gt;
01002:             *      &lt;annotation&gt;
01003:             *          &lt;documentation&gt;Definition of the second parameter that defines the shape of an ellipsoid. An ellipsoid requires two defining parameters: semi-major axis and inverse flattening or semi-major axis and semi-minor axis. When the reference body is a sphere rather than an ellipsoid, only a single defining parameter is required, namely the radius of the sphere; in that case, the semi-major axis "degenerates" into the radius of the sphere.&lt;/documentation&gt;
01004:             *      &lt;/annotation&gt;
01005:             *      &lt;choice&gt;
01006:             *          &lt;element ref="gml:inverseFlattening"/&gt;
01007:             *          &lt;element ref="gml:semiMinorAxis"/&gt;
01008:             *          &lt;element ref="gml:isSphere"/&gt;
01009:             *      &lt;/choice&gt;
01010:             *  &lt;/complexType&gt;
01011:             *
01012:             *    </code>
01013:             *   </pre>
01014:             * </p>
01015:             *
01016:             * @generated
01017:             */
01018:            public static final AttributeType SECONDDEFININGPARAMETERTYPE_TYPE = AttributeTypeFactory
01019:                    .newAttributeType("SecondDefiningParameterType",
01020:                            java.lang.Object.class);
01021:
01022:            /**
01023:             * <p>
01024:             *  <pre>
01025:             *   <code>
01026:             *  &lt;complexType name="OrientableSurfaceType"&gt;
01027:             *      &lt;annotation&gt;
01028:             *          &lt;documentation&gt;OrientableSurface consists of a surface and an orientation. If the orientation is "+", then the OrientableSurface is identical to the baseSurface. If the orientation is "-", then the OrientableSurface is a reference to a Surface with an up-normal that reverses the direction for this OrientableSurface, the sense of "the top of the surface".&lt;/documentation&gt;
01029:             *      &lt;/annotation&gt;
01030:             *      &lt;complexContent&gt;
01031:             *          &lt;extension base="gml:AbstractSurfaceType"&gt;
01032:             *              &lt;sequence&gt;
01033:             *                  &lt;element ref="gml:baseSurface"&gt;
01034:             *                      &lt;annotation&gt;
01035:             *                          &lt;documentation&gt;References or contains the base surface (positive orientation).&lt;/documentation&gt;
01036:             *                      &lt;/annotation&gt;
01037:             *                  &lt;/element&gt;
01038:             *              &lt;/sequence&gt;
01039:             *              &lt;attribute default="+" name="orientation" type="gml:SignType"&gt;
01040:             *                  &lt;annotation&gt;
01041:             *                      &lt;documentation&gt;If the orientation is "+", then the OrientableSurface is identical to the baseSurface. If the orientation is "-", then the OrientableSurface is a reference to a Surface with an up-normal that reverses the direction for this OrientableSurface, the sense of "the top of the surface". "+" is the default value.&lt;/documentation&gt;
01042:             *                  &lt;/annotation&gt;
01043:             *              &lt;/attribute&gt;
01044:             *          &lt;/extension&gt;
01045:             *      &lt;/complexContent&gt;
01046:             *  &lt;/complexType&gt;
01047:             *
01048:             *    </code>
01049:             *   </pre>
01050:             * </p>
01051:             *
01052:             * @generated
01053:             */
01054:            public static final AttributeType ORIENTABLESURFACETYPE_TYPE = AttributeTypeFactory
01055:                    .newAttributeType("OrientableSurfaceType",
01056:                            java.lang.Object.class);
01057:
01058:            /**
01059:             * <p>
01060:             *  <pre>
01061:             *   <code>
01062:             *  &lt;complexType name="CategoryPropertyType"&gt;
01063:             *      &lt;annotation&gt;
01064:             *          &lt;documentation&gt;Property whose content is a Category.&lt;/documentation&gt;
01065:             *      &lt;/annotation&gt;
01066:             *      &lt;complexContent&gt;
01067:             *          &lt;restriction base="gml:ValuePropertyType"&gt;
01068:             *              &lt;sequence minOccurs="0"&gt;
01069:             *                  &lt;element ref="gml:Category"/&gt;
01070:             *              &lt;/sequence&gt;
01071:             *          &lt;/restriction&gt;
01072:             *      &lt;/complexContent&gt;
01073:             *  &lt;/complexType&gt;
01074:             *
01075:             *    </code>
01076:             *   </pre>
01077:             * </p>
01078:             *
01079:             * @generated
01080:             */
01081:            public static final AttributeType CATEGORYPROPERTYTYPE_TYPE = AttributeTypeFactory
01082:                    .newAttributeType("CategoryPropertyType",
01083:                            java.lang.Object.class);
01084:
01085:            /**
01086:             * <p>
01087:             *  <pre>
01088:             *   <code>
01089:             *  &lt;complexType name="EngineeringCRSRefType"&gt;
01090:             *      &lt;annotation&gt;
01091:             *          &lt;documentation&gt;Association to an engineering coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
01092:             *      &lt;/annotation&gt;
01093:             *      &lt;sequence minOccurs="0"&gt;
01094:             *          &lt;element ref="gml:EngineeringCRS"/&gt;
01095:             *      &lt;/sequence&gt;
01096:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01097:             *  &lt;/complexType&gt;
01098:             *
01099:             *    </code>
01100:             *   </pre>
01101:             * </p>
01102:             *
01103:             * @generated
01104:             */
01105:            public static final AttributeType ENGINEERINGCRSREFTYPE_TYPE = AttributeTypeFactory
01106:                    .newAttributeType("EngineeringCRSRefType",
01107:                            java.lang.Object.class);
01108:
01109:            /**
01110:             * <p>
01111:             *  <pre>
01112:             *   <code>
01113:             *  &lt;complexType name="ConeType"&gt;
01114:             *      &lt;annotation&gt;
01115:             *          &lt;documentation&gt;A cone is a gridded surface given as a
01116:             *     family of conic sections whose control points vary linearly.
01117:             *     NOTE! A 5-point ellipse with all defining positions identical
01118:             *     is a point. Thus, a truncated elliptical cone can be given as a
01119:             *     2x5 set of control points
01120:             *     ((P1, P1, P1, P1, P1), (P2, P3, P4, P5, P6)). P1 is the apex
01121:             *     of the cone. P2, P3,P4, P5 and P6 are any five distinct points
01122:             *     around the base ellipse of the cone. If the horizontal curves
01123:             *     are circles as opposed to ellipses, the a circular cone can
01124:             *     be constructed using ((P1, P1, P1),(P2, P3, P4)). The apex most
01125:             *     not coinside with the other plane.&lt;/documentation&gt;
01126:             *      &lt;/annotation&gt;
01127:             *      &lt;complexContent&gt;
01128:             *          &lt;extension base="gml:AbstractGriddedSurfaceType"&gt;
01129:             *              &lt;attribute fixed="circularArc3Points"
01130:             *                  name="horizontalCurveType" type="gml:CurveInterpolationType"/&gt;
01131:             *              &lt;attribute fixed="linear" name="verticalCurveType" type="gml:CurveInterpolationType"/&gt;
01132:             *          &lt;/extension&gt;
01133:             *      &lt;/complexContent&gt;
01134:             *  &lt;/complexType&gt;
01135:             *
01136:             *    </code>
01137:             *   </pre>
01138:             * </p>
01139:             *
01140:             * @generated
01141:             */
01142:            public static final AttributeType CONETYPE_TYPE = AttributeTypeFactory
01143:                    .newAttributeType("ConeType", java.lang.Object.class);
01144:
01145:            /**
01146:             * <p>
01147:             *  <pre>
01148:             *   <code>
01149:             *  &lt;complexType name="ReferenceType"&gt;
01150:             *      &lt;annotation&gt;
01151:             *          &lt;documentation&gt;A pattern or base for derived types used to specify complex types corresponding to a UML aggregation association.  An instance of this type serves as a pointer to a remote Object.&lt;/documentation&gt;
01152:             *      &lt;/annotation&gt;
01153:             *      &lt;sequence/&gt;
01154:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01155:             *  &lt;/complexType&gt;
01156:             *
01157:             *    </code>
01158:             *   </pre>
01159:             * </p>
01160:             *
01161:             * @generated
01162:             */
01163:            public static final AttributeType REFERENCETYPE_TYPE = AttributeTypeFactory
01164:                    .newAttributeType("ReferenceType", java.lang.Object.class);
01165:
01166:            /**
01167:             * <p>
01168:             *  <pre>
01169:             *   <code>
01170:             *  &lt;complexType name="OperationParameterGroupRefType"&gt;
01171:             *      &lt;annotation&gt;
01172:             *          &lt;documentation&gt;Association to an operation parameter, either referencing or containing the definition of that parameter. &lt;/documentation&gt;
01173:             *      &lt;/annotation&gt;
01174:             *      &lt;sequence minOccurs="0"&gt;
01175:             *          &lt;element ref="gml:OperationParameterGroup"/&gt;
01176:             *      &lt;/sequence&gt;
01177:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01178:             *  &lt;/complexType&gt;
01179:             *
01180:             *    </code>
01181:             *   </pre>
01182:             * </p>
01183:             *
01184:             * @generated
01185:             */
01186:            public static final AttributeType OPERATIONPARAMETERGROUPREFTYPE_TYPE = AttributeTypeFactory
01187:                    .newAttributeType("OperationParameterGroupRefType",
01188:                            java.lang.Object.class);
01189:
01190:            /**
01191:             * <p>
01192:             *  <pre>
01193:             *   <code>
01194:             *  &lt;complexType name="TimeNodePropertyType"&gt;
01195:             *      &lt;annotation&gt;
01196:             *          &lt;documentation&gt;A time node property can either be any time node element encapsulated in an element of this type
01197:             *                          or an XLink reference to a remote time node element (where remote includes elements located elsewhere in the same document).
01198:             *                          Note that either the reference or the contained element must be given, but not both or none.&lt;/documentation&gt;
01199:             *      &lt;/annotation&gt;
01200:             *      &lt;sequence minOccurs="0"&gt;
01201:             *          &lt;element ref="gml:TimeNode"/&gt;
01202:             *      &lt;/sequence&gt;
01203:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01204:             *  &lt;/complexType&gt;
01205:             *
01206:             *    </code>
01207:             *   </pre>
01208:             * </p>
01209:             *
01210:             * @generated
01211:             */
01212:            public static final AttributeType TIMENODEPROPERTYTYPE_TYPE = AttributeTypeFactory
01213:                    .newAttributeType("TimeNodePropertyType",
01214:                            java.lang.Object.class);
01215:
01216:            /**
01217:             * <p>
01218:             *  <pre>
01219:             *   <code>
01220:             *  &lt;complexType name="AbstractGeneralOperationParameterRefType"&gt;
01221:             *      &lt;annotation&gt;
01222:             *          &lt;documentation&gt;Association to an operation parameter or group, either referencing or containing the definition of that parameter or group. &lt;/documentation&gt;
01223:             *      &lt;/annotation&gt;
01224:             *      &lt;sequence minOccurs="0"&gt;
01225:             *          &lt;element ref="gml:_GeneralOperationParameter"/&gt;
01226:             *      &lt;/sequence&gt;
01227:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01228:             *  &lt;/complexType&gt;
01229:             *
01230:             *    </code>
01231:             *   </pre>
01232:             * </p>
01233:             *
01234:             * @generated
01235:             */
01236:            public static final AttributeType ABSTRACTGENERALOPERATIONPARAMETERREFTYPE_TYPE = AttributeTypeFactory
01237:                    .newAttributeType(
01238:                            "AbstractGeneralOperationParameterRefType",
01239:                            java.lang.Object.class);
01240:
01241:            /**
01242:             * <p>
01243:             *  <pre>
01244:             *   <code>
01245:             *  &lt;complexType name="CoordinateSystemAxisRefType"&gt;
01246:             *      &lt;annotation&gt;
01247:             *          &lt;documentation&gt;Association to a coordinate system axis, either referencing or containing the definition of that axis. &lt;/documentation&gt;
01248:             *      &lt;/annotation&gt;
01249:             *      &lt;sequence minOccurs="0"&gt;
01250:             *          &lt;element ref="gml:CoordinateSystemAxis"/&gt;
01251:             *      &lt;/sequence&gt;
01252:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01253:             *  &lt;/complexType&gt;
01254:             *
01255:             *    </code>
01256:             *   </pre>
01257:             * </p>
01258:             *
01259:             * @generated
01260:             */
01261:            public static final AttributeType COORDINATESYSTEMAXISREFTYPE_TYPE = AttributeTypeFactory
01262:                    .newAttributeType("CoordinateSystemAxisRefType",
01263:                            java.lang.Object.class);
01264:
01265:            /**
01266:             * <p>
01267:             *  <pre>
01268:             *   <code>
01269:             *  &lt;complexType name="CountPropertyType"&gt;
01270:             *      &lt;annotation&gt;
01271:             *          &lt;documentation&gt;Property whose content is a Count.&lt;/documentation&gt;
01272:             *      &lt;/annotation&gt;
01273:             *      &lt;complexContent&gt;
01274:             *          &lt;restriction base="gml:ValuePropertyType"&gt;
01275:             *              &lt;sequence minOccurs="0"&gt;
01276:             *                  &lt;element ref="gml:Count"/&gt;
01277:             *              &lt;/sequence&gt;
01278:             *          &lt;/restriction&gt;
01279:             *      &lt;/complexContent&gt;
01280:             *  &lt;/complexType&gt;
01281:             *
01282:             *    </code>
01283:             *   </pre>
01284:             * </p>
01285:             *
01286:             * @generated
01287:             */
01288:            public static final AttributeType COUNTPROPERTYTYPE_TYPE = AttributeTypeFactory
01289:                    .newAttributeType("CountPropertyType",
01290:                            java.lang.Object.class);
01291:
01292:            /**
01293:             * <p>
01294:             *  <pre>
01295:             *   <code>
01296:             *  &lt;complexType name="MeasureOrNullListType"&gt;
01297:             *      &lt;annotation&gt;
01298:             *          &lt;documentation&gt;List of numbers with a uniform scale.
01299:             *        A member of the list may be a typed null.
01300:             *        The value of uom (Units Of Measure) attribute is a reference to
01301:             *        a Reference System for the amount, either a ratio or position scale. &lt;/documentation&gt;
01302:             *      &lt;/annotation&gt;
01303:             *      &lt;simpleContent&gt;
01304:             *          &lt;extension base="gml:doubleOrNullList"&gt;
01305:             *              &lt;attribute name="uom" type="anyURI" use="required"/&gt;
01306:             *          &lt;/extension&gt;
01307:             *      &lt;/simpleContent&gt;
01308:             *  &lt;/complexType&gt;
01309:             *
01310:             *    </code>
01311:             *   </pre>
01312:             * </p>
01313:             *
01314:             * @generated
01315:             */
01316:            public static final AttributeType MEASUREORNULLLISTTYPE_TYPE = AttributeTypeFactory
01317:                    .newAttributeType("MeasureOrNullListType",
01318:                            java.lang.Object.class);
01319:
01320:            /**
01321:             * <p>
01322:             *  <pre>
01323:             *   <code>
01324:             *  &lt;complexType abstract="true" name="PrimeMeridianBaseType"&gt;
01325:             *      &lt;annotation&gt;
01326:             *          &lt;documentation&gt;Basic encoding for prime meridian objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
01327:             *      &lt;/annotation&gt;
01328:             *      &lt;complexContent&gt;
01329:             *          &lt;restriction base="gml:DefinitionType"&gt;
01330:             *              &lt;sequence&gt;
01331:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
01332:             *                  &lt;element ref="gml:meridianName"/&gt;
01333:             *              &lt;/sequence&gt;
01334:             *              &lt;attribute ref="gml:id" use="required"/&gt;
01335:             *          &lt;/restriction&gt;
01336:             *      &lt;/complexContent&gt;
01337:             *  &lt;/complexType&gt;
01338:             *
01339:             *    </code>
01340:             *   </pre>
01341:             * </p>
01342:             *
01343:             * @generated
01344:             */
01345:            public static final AttributeType PRIMEMERIDIANBASETYPE_TYPE = AttributeTypeFactory
01346:                    .newAttributeType("PrimeMeridianBaseType",
01347:                            java.lang.Object.class);
01348:
01349:            /**
01350:             * <p>
01351:             *  <pre>
01352:             *   <code>
01353:             *  &lt;complexType name="GeocentricCRSType"&gt;
01354:             *      &lt;annotation&gt;
01355:             *          &lt;documentation&gt;A 3D coordinate reference system with the origin at the approximate centre of mass of the earth. A geocentric CRS deals with the earth's curvature by taking a 3D spatial view, which obviates the need to model the earth's curvature. &lt;/documentation&gt;
01356:             *      &lt;/annotation&gt;
01357:             *      &lt;complexContent&gt;
01358:             *          &lt;extension base="gml:AbstractReferenceSystemType"&gt;
01359:             *              &lt;sequence&gt;
01360:             *                  &lt;choice&gt;
01361:             *                      &lt;element ref="gml:usesCartesianCS"/&gt;
01362:             *                      &lt;element ref="gml:usesSphericalCS"/&gt;
01363:             *                  &lt;/choice&gt;
01364:             *                  &lt;element ref="gml:usesGeodeticDatum"/&gt;
01365:             *              &lt;/sequence&gt;
01366:             *          &lt;/extension&gt;
01367:             *      &lt;/complexContent&gt;
01368:             *  &lt;/complexType&gt;
01369:             *
01370:             *    </code>
01371:             *   </pre>
01372:             * </p>
01373:             *
01374:             * @generated
01375:             */
01376:            public static final AttributeType GEOCENTRICCRSTYPE_TYPE = AttributeTypeFactory
01377:                    .newAttributeType("GeocentricCRSType",
01378:                            java.lang.Object.class);
01379:
01380:            /**
01381:             * <p>
01382:             *  <pre>
01383:             *   <code>
01384:             *  &lt;complexType name="ConventionalUnitType"&gt;
01385:             *      &lt;annotation&gt;
01386:             *          &lt;documentation&gt;Definition of a unit of measure which is related to a preferred unit for this quantity type through a conversion formula.  A method for deriving this unit by algebraic combination of more primitive units, may also be provided.&lt;/documentation&gt;
01387:             *      &lt;/annotation&gt;
01388:             *      &lt;complexContent&gt;
01389:             *          &lt;extension base="gml:UnitDefinitionType"&gt;
01390:             *              &lt;sequence&gt;
01391:             *                  &lt;choice&gt;
01392:             *                      &lt;element ref="gml:conversionToPreferredUnit"/&gt;
01393:             *                      &lt;element ref="gml:roughConversionToPreferredUnit"/&gt;
01394:             *                  &lt;/choice&gt;
01395:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:derivationUnitTerm"/&gt;
01396:             *              &lt;/sequence&gt;
01397:             *          &lt;/extension&gt;
01398:             *      &lt;/complexContent&gt;
01399:             *  &lt;/complexType&gt;
01400:             *
01401:             *    </code>
01402:             *   </pre>
01403:             * </p>
01404:             *
01405:             * @generated
01406:             */
01407:            public static final AttributeType CONVENTIONALUNITTYPE_TYPE = AttributeTypeFactory
01408:                    .newAttributeType("ConventionalUnitType",
01409:                            java.lang.Object.class);
01410:
01411:            /**
01412:             * <p>
01413:             *  <pre>
01414:             *   <code>
01415:             *  &lt;complexType name="UserDefinedCSRefType"&gt;
01416:             *      &lt;annotation&gt;
01417:             *          &lt;documentation&gt;Association to a user-defined coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
01418:             *      &lt;/annotation&gt;
01419:             *      &lt;sequence minOccurs="0"&gt;
01420:             *          &lt;element ref="gml:UserDefinedCS"/&gt;
01421:             *      &lt;/sequence&gt;
01422:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01423:             *  &lt;/complexType&gt;
01424:             *
01425:             *    </code>
01426:             *   </pre>
01427:             * </p>
01428:             *
01429:             * @generated
01430:             */
01431:            public static final AttributeType USERDEFINEDCSREFTYPE_TYPE = AttributeTypeFactory
01432:                    .newAttributeType("UserDefinedCSRefType",
01433:                            java.lang.Object.class);
01434:
01435:            /**
01436:             * <p>
01437:             *  <pre>
01438:             *   <code>
01439:             *  &lt;simpleType name="booleanOrNull"&gt;
01440:             *      &lt;annotation&gt;
01441:             *          &lt;documentation&gt;Union of the XML Schema boolean type and the GML Nulltype.  An element which uses this type may have content which is either a boolean {0,1,true,false} or a value from Nulltype&lt;/documentation&gt;
01442:             *      &lt;/annotation&gt;
01443:             *      &lt;union memberTypes="gml:NullEnumeration boolean anyURI"/&gt;
01444:             *  &lt;/simpleType&gt;
01445:             *
01446:             *    </code>
01447:             *   </pre>
01448:             * </p>
01449:             *
01450:             * @generated
01451:             */
01452:            public static final AttributeType BOOLEANORNULL_TYPE = AttributeTypeFactory
01453:                    .newAttributeType("booleanOrNull", java.lang.Object.class);
01454:
01455:            /**
01456:             * <p>
01457:             *  <pre>
01458:             *   <code>
01459:             *  &lt;complexType name="TopoPointPropertyType"&gt;
01460:             *      &lt;sequence&gt;
01461:             *          &lt;element ref="gml:TopoPoint"/&gt;
01462:             *      &lt;/sequence&gt;
01463:             *  &lt;/complexType&gt;
01464:             *
01465:             *    </code>
01466:             *   </pre>
01467:             * </p>
01468:             *
01469:             * @generated
01470:             */
01471:            public static final AttributeType TOPOPOINTPROPERTYTYPE_TYPE = AttributeTypeFactory
01472:                    .newAttributeType("TopoPointPropertyType",
01473:                            java.lang.Object.class);
01474:
01475:            /**
01476:             * <p>
01477:             *  <pre>
01478:             *   <code>
01479:             *  &lt;complexType name="LineStringSegmentArrayPropertyType"&gt;
01480:             *      &lt;sequence&gt;
01481:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:LineStringSegment"/&gt;
01482:             *      &lt;/sequence&gt;
01483:             *  &lt;/complexType&gt;
01484:             *
01485:             *    </code>
01486:             *   </pre>
01487:             * </p>
01488:             *
01489:             * @generated
01490:             */
01491:            public static final AttributeType LINESTRINGSEGMENTARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
01492:                    .newAttributeType("LineStringSegmentArrayPropertyType",
01493:                            LineString[].class);
01494:
01495:            /**
01496:             * <p>
01497:             *  <pre>
01498:             *   <code>
01499:             *  &lt;complexType name="AbstractSurfaceType"&gt;
01500:             *      &lt;annotation&gt;
01501:             *          &lt;documentation&gt;An abstraction of a surface to support the different levels of complexity. A surface is always a continuous region of a plane.&lt;/documentation&gt;
01502:             *      &lt;/annotation&gt;
01503:             *      &lt;complexContent&gt;
01504:             *          &lt;extension base="gml:AbstractGeometricPrimitiveType"/&gt;
01505:             *      &lt;/complexContent&gt;
01506:             *  &lt;/complexType&gt;
01507:             *
01508:             *    </code>
01509:             *   </pre>
01510:             * </p>
01511:             *
01512:             * @generated
01513:             */
01514:            public static final AttributeType ABSTRACTSURFACETYPE_TYPE = AttributeTypeFactory
01515:                    .newAttributeType("AbstractSurfaceType",
01516:                            java.lang.Object.class);
01517:
01518:            /**
01519:             * <p>
01520:             *  <pre>
01521:             *   <code>
01522:             *  &lt;complexType name="MultiLineStringType"&gt;
01523:             *      &lt;annotation&gt;
01524:             *          &lt;documentation&gt;A MultiLineString is defined by one or more LineStrings, referenced through lineStringMember elements. Deprecated with GML version 3.0. Use MultiCurveType instead.&lt;/documentation&gt;
01525:             *      &lt;/annotation&gt;
01526:             *      &lt;complexContent&gt;
01527:             *          &lt;extension base="gml:AbstractGeometricAggregateType"&gt;
01528:             *              &lt;sequence&gt;
01529:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:lineStringMember"/&gt;
01530:             *              &lt;/sequence&gt;
01531:             *          &lt;/extension&gt;
01532:             *      &lt;/complexContent&gt;
01533:             *  &lt;/complexType&gt;
01534:             *
01535:             *    </code>
01536:             *   </pre>
01537:             * </p>
01538:             *
01539:             * @generated
01540:             */
01541:            public static final AttributeType MULTILINESTRINGTYPE_TYPE = AttributeTypeFactory
01542:                    .newAttributeType("MultiLineStringType",
01543:                            MultiLineString.class);
01544:
01545:            /**
01546:             * <p>
01547:             *  <pre>
01548:             *   <code>
01549:             *  &lt;complexType name="PrimeMeridianRefType"&gt;
01550:             *      &lt;annotation&gt;
01551:             *          &lt;documentation&gt;Association to a prime meridian, either referencing or containing the definition of that meridian. &lt;/documentation&gt;
01552:             *      &lt;/annotation&gt;
01553:             *      &lt;sequence minOccurs="0"&gt;
01554:             *          &lt;element ref="gml:PrimeMeridian"/&gt;
01555:             *      &lt;/sequence&gt;
01556:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01557:             *  &lt;/complexType&gt;
01558:             *
01559:             *    </code>
01560:             *   </pre>
01561:             * </p>
01562:             *
01563:             * @generated
01564:             */
01565:            public static final AttributeType PRIMEMERIDIANREFTYPE_TYPE = AttributeTypeFactory
01566:                    .newAttributeType("PrimeMeridianRefType",
01567:                            java.lang.Object.class);
01568:
01569:            /**
01570:             * <p>
01571:             *  <pre>
01572:             *   <code>
01573:             *  &lt;complexType name="TopoComplexMemberType"&gt;
01574:             *      &lt;annotation&gt;
01575:             *          &lt;documentation&gt;This Property can be used to embed a TopoComplex in a feature collection.&lt;/documentation&gt;
01576:             *      &lt;/annotation&gt;
01577:             *      &lt;sequence&gt;
01578:             *          &lt;element minOccurs="0" ref="gml:TopoComplex"/&gt;
01579:             *      &lt;/sequence&gt;
01580:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01581:             *  &lt;/complexType&gt;
01582:             *
01583:             *    </code>
01584:             *   </pre>
01585:             * </p>
01586:             *
01587:             * @generated
01588:             */
01589:            public static final AttributeType TOPOCOMPLEXMEMBERTYPE_TYPE = AttributeTypeFactory
01590:                    .newAttributeType("TopoComplexMemberType",
01591:                            java.lang.Object.class);
01592:
01593:            /**
01594:             * <p>
01595:             *  <pre>
01596:             *   <code>
01597:             *  &lt;complexType name="PassThroughOperationRefType"&gt;
01598:             *      &lt;annotation&gt;
01599:             *          &lt;documentation&gt;Association to a pass through operation, either referencing or containing the definition of that pass through operation. &lt;/documentation&gt;
01600:             *      &lt;/annotation&gt;
01601:             *      &lt;sequence minOccurs="0"&gt;
01602:             *          &lt;element ref="gml:PassThroughOperation"/&gt;
01603:             *      &lt;/sequence&gt;
01604:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01605:             *  &lt;/complexType&gt;
01606:             *
01607:             *    </code>
01608:             *   </pre>
01609:             * </p>
01610:             *
01611:             * @generated
01612:             */
01613:            public static final AttributeType PASSTHROUGHOPERATIONREFTYPE_TYPE = AttributeTypeFactory
01614:                    .newAttributeType("PassThroughOperationRefType",
01615:                            java.lang.Object.class);
01616:
01617:            /**
01618:             * <p>
01619:             *  <pre>
01620:             *   <code>
01621:             *  &lt;complexType name="TopoSurfacePropertyType"&gt;
01622:             *      &lt;sequence&gt;
01623:             *          &lt;element ref="gml:TopoSurface"/&gt;
01624:             *      &lt;/sequence&gt;
01625:             *  &lt;/complexType&gt;
01626:             *
01627:             *    </code>
01628:             *   </pre>
01629:             * </p>
01630:             *
01631:             * @generated
01632:             */
01633:            public static final AttributeType TOPOSURFACEPROPERTYTYPE_TYPE = AttributeTypeFactory
01634:                    .newAttributeType("TopoSurfacePropertyType",
01635:                            java.lang.Object.class);
01636:
01637:            /**
01638:             * <p>
01639:             *  <pre>
01640:             *   <code>
01641:             *  &lt;complexType name="CoordinatesType"&gt;
01642:             *      &lt;annotation&gt;
01643:             *          &lt;documentation&gt;Tables or arrays of tuples.
01644:             *          May be used for text-encoding of values from a table.
01645:             *          Actually just a string, but allows the user to indicate which characters are used as separators.
01646:             *          The value of the 'cs' attribute is the separator for coordinate values,
01647:             *          and the value of the 'ts' attribute gives the tuple separator (a single space by default);
01648:             *          the default values may be changed to reflect local usage.
01649:             *          Defaults to CSV within a tuple, space between tuples.
01650:             *          However, any string content will be schema-valid.  &lt;/documentation&gt;
01651:             *      &lt;/annotation&gt;
01652:             *      &lt;simpleContent&gt;
01653:             *          &lt;extension base="string"&gt;
01654:             *              &lt;attribute default="." name="decimal" type="string"/&gt;
01655:             *              &lt;attribute default="," name="cs" type="string"/&gt;
01656:             *              &lt;attribute default=" " name="ts" type="string"/&gt;
01657:             *          &lt;/extension&gt;
01658:             *      &lt;/simpleContent&gt;
01659:             *  &lt;/complexType&gt;
01660:             *
01661:             *    </code>
01662:             *   </pre>
01663:             * </p>
01664:             *
01665:             * @generated
01666:             */
01667:            public static final AttributeType COORDINATESTYPE_TYPE = AttributeTypeFactory
01668:                    .newAttributeType("CoordinatesType", java.lang.Object.class);
01669:
01670:            /**
01671:             * <p>
01672:             *  <pre>
01673:             *   <code>
01674:             *  &lt;simpleType name="NullEnumeration"&gt;
01675:             *      &lt;annotation&gt;
01676:             *          &lt;documentation&gt; Some common reasons for a null value:
01677:             *
01678:             *          innapplicable - the object does not have a value
01679:             *          missing - The correct value is not readily available to the sender of this data.
01680:             *                             Furthermore, a correct value may not exist.
01681:             *          template - the value will be available later
01682:             *          unknown - The correct value is not known to, and not computable by, the sender of this data.
01683:             *                             However, a correct value probably exists.
01684:             *          withheld - the value is not divulged
01685:             *
01686:             *          other:reason - as indicated by "reason" string
01687:             *
01688:             *          Specific communities may agree to assign more strict semantics when these terms are used in a particular context.
01689:             *        &lt;/documentation&gt;
01690:             *      &lt;/annotation&gt;
01691:             *      &lt;union&gt;
01692:             *          &lt;simpleType&gt;
01693:             *              &lt;restriction base="string"&gt;
01694:             *                  &lt;enumeration value="inapplicable"/&gt;
01695:             *                  &lt;enumeration value="missing"/&gt;
01696:             *                  &lt;enumeration value="template"/&gt;
01697:             *                  &lt;enumeration value="unknown"/&gt;
01698:             *                  &lt;enumeration value="withheld"/&gt;
01699:             *              &lt;/restriction&gt;
01700:             *          &lt;/simpleType&gt;
01701:             *          &lt;simpleType&gt;
01702:             *              &lt;restriction base="string"&gt;
01703:             *                  &lt;pattern value="other:\w{2,}"/&gt;
01704:             *              &lt;/restriction&gt;
01705:             *          &lt;/simpleType&gt;
01706:             *      &lt;/union&gt;
01707:             *  &lt;/simpleType&gt;
01708:             *
01709:             *    </code>
01710:             *   </pre>
01711:             * </p>
01712:             *
01713:             * @generated
01714:             */
01715:            public static final AttributeType NULLENUMERATION_TYPE = AttributeTypeFactory
01716:                    .newAttributeType("NullEnumeration", java.lang.Object.class);
01717:
01718:            /**
01719:             * <p>
01720:             *  <pre>
01721:             *   <code>
01722:             *  &lt;complexType name="TimeCoordinateSystemType"&gt;
01723:             *      &lt;annotation&gt;
01724:             *          &lt;documentation xml:lang="en"&gt;A temporal coordinate system is based on a continuous interval scale defined in terms of a single time interval.&lt;/documentation&gt;
01725:             *      &lt;/annotation&gt;
01726:             *      &lt;complexContent&gt;
01727:             *          &lt;extension base="gml:AbstractTimeReferenceSystemType"&gt;
01728:             *              &lt;sequence&gt;
01729:             *                  &lt;choice&gt;
01730:             *                      &lt;element name="originPosition" type="gml:TimePositionType"/&gt;
01731:             *                      &lt;element name="origin" type="gml:TimeInstantPropertyType"/&gt;
01732:             *                  &lt;/choice&gt;
01733:             *                  &lt;element name="interval" type="gml:TimeIntervalLengthType"/&gt;
01734:             *              &lt;/sequence&gt;
01735:             *          &lt;/extension&gt;
01736:             *      &lt;/complexContent&gt;
01737:             *  &lt;/complexType&gt;
01738:             *
01739:             *    </code>
01740:             *   </pre>
01741:             * </p>
01742:             *
01743:             * @generated
01744:             */
01745:            public static final AttributeType TIMECOORDINATESYSTEMTYPE_TYPE = AttributeTypeFactory
01746:                    .newAttributeType("TimeCoordinateSystemType",
01747:                            java.lang.Object.class);
01748:
01749:            /**
01750:             * <p>
01751:             *  <pre>
01752:             *   <code>
01753:             *  &lt;complexType name="DefinitionProxyType"&gt;
01754:             *      &lt;annotation&gt;
01755:             *          &lt;documentation&gt;A proxy entry in a dictionary of definitions. An element of this type contains a reference to a remote definition object. This entry is expected to be convenient in allowing multiple elements in one XML document to contain short (abbreviated XPointer) references, which are resolved to an external definition provided in a Dictionary element in the same XML document. &lt;/documentation&gt;
01756:             *      &lt;/annotation&gt;
01757:             *      &lt;complexContent&gt;
01758:             *          &lt;extension base="gml:DefinitionType"&gt;
01759:             *              &lt;sequence&gt;
01760:             *                  &lt;element ref="gml:definitionRef"&gt;
01761:             *                      &lt;annotation&gt;
01762:             *                          &lt;documentation&gt;A reference to a remote entry in this dictionary, used when this dictionary entry is identified to allow external references to this specific entry. The remote entry referenced can be in a dictionary in the same or different XML document. &lt;/documentation&gt;
01763:             *                      &lt;/annotation&gt;
01764:             *                  &lt;/element&gt;
01765:             *              &lt;/sequence&gt;
01766:             *          &lt;/extension&gt;
01767:             *      &lt;/complexContent&gt;
01768:             *  &lt;/complexType&gt;
01769:             *
01770:             *    </code>
01771:             *   </pre>
01772:             * </p>
01773:             *
01774:             * @generated
01775:             */
01776:            public static final AttributeType DEFINITIONPROXYTYPE_TYPE = AttributeTypeFactory
01777:                    .newAttributeType("DefinitionProxyType",
01778:                            java.lang.Object.class);
01779:
01780:            /**
01781:             * <p>
01782:             *  <pre>
01783:             *   <code>
01784:             *  &lt;complexType name="TimeCalendarPropertyType"&gt;
01785:             *      &lt;sequence minOccurs="0"&gt;
01786:             *          &lt;element ref="gml:TimeCalendar"/&gt;
01787:             *      &lt;/sequence&gt;
01788:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01789:             *  &lt;/complexType&gt;
01790:             *
01791:             *    </code>
01792:             *   </pre>
01793:             * </p>
01794:             *
01795:             * @generated
01796:             */
01797:            public static final AttributeType TIMECALENDARPROPERTYTYPE_TYPE = AttributeTypeFactory
01798:                    .newAttributeType("TimeCalendarPropertyType",
01799:                            java.lang.Object.class);
01800:
01801:            /**
01802:             * <p>
01803:             *  <pre>
01804:             *   <code>
01805:             *  &lt;complexType name="PassThroughOperationType"&gt;
01806:             *      &lt;annotation&gt;
01807:             *          &lt;documentation&gt;A pass-through operation specifies that a subset of a coordinate tuple is subject to a specific coordinate operation. &lt;/documentation&gt;
01808:             *      &lt;/annotation&gt;
01809:             *      &lt;complexContent&gt;
01810:             *          &lt;extension base="gml:AbstractCoordinateOperationType"&gt;
01811:             *              &lt;sequence&gt;
01812:             *                  &lt;element maxOccurs="unbounded" ref="gml:modifiedCoordinate"&gt;
01813:             *                      &lt;annotation&gt;
01814:             *                          &lt;documentation&gt;Ordered sequence of positive integers defining the positions in a coordinate tuple of the coordinates affected by this pass-through operation. &lt;/documentation&gt;
01815:             *                      &lt;/annotation&gt;
01816:             *                  &lt;/element&gt;
01817:             *                  &lt;element ref="gml:usesOperation"/&gt;
01818:             *              &lt;/sequence&gt;
01819:             *          &lt;/extension&gt;
01820:             *      &lt;/complexContent&gt;
01821:             *  &lt;/complexType&gt;
01822:             *
01823:             *    </code>
01824:             *   </pre>
01825:             * </p>
01826:             *
01827:             * @generated
01828:             */
01829:            public static final AttributeType PASSTHROUGHOPERATIONTYPE_TYPE = AttributeTypeFactory
01830:                    .newAttributeType("PassThroughOperationType",
01831:                            java.lang.Object.class);
01832:
01833:            /**
01834:             * <p>
01835:             *  <pre>
01836:             *   <code>
01837:             *  &lt;complexType name="TopoPrimitiveMemberType"&gt;
01838:             *      &lt;annotation&gt;
01839:             *          &lt;documentation&gt;This type supports embedding topological primitives in a TopoComplex.&lt;/documentation&gt;
01840:             *      &lt;/annotation&gt;
01841:             *      &lt;sequence&gt;
01842:             *          &lt;element minOccurs="0" ref="gml:_TopoPrimitive"/&gt;
01843:             *      &lt;/sequence&gt;
01844:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01845:             *  &lt;/complexType&gt;
01846:             *
01847:             *    </code>
01848:             *   </pre>
01849:             * </p>
01850:             *
01851:             * @generated
01852:             */
01853:            public static final AttributeType TOPOPRIMITIVEMEMBERTYPE_TYPE = AttributeTypeFactory
01854:                    .newAttributeType("TopoPrimitiveMemberType",
01855:                            java.lang.Object.class);
01856:
01857:            /**
01858:             * <p>
01859:             *  <pre>
01860:             *   <code>
01861:             *  &lt;complexType name="ConcatenatedOperationRefType"&gt;
01862:             *      &lt;annotation&gt;
01863:             *          &lt;documentation&gt;Association to a concatenated operation, either referencing or containing the definition of that concatenated operation. &lt;/documentation&gt;
01864:             *      &lt;/annotation&gt;
01865:             *      &lt;sequence minOccurs="0"&gt;
01866:             *          &lt;element ref="gml:ConcatenatedOperation"/&gt;
01867:             *      &lt;/sequence&gt;
01868:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01869:             *  &lt;/complexType&gt;
01870:             *
01871:             *    </code>
01872:             *   </pre>
01873:             * </p>
01874:             *
01875:             * @generated
01876:             */
01877:            public static final AttributeType CONCATENATEDOPERATIONREFTYPE_TYPE = AttributeTypeFactory
01878:                    .newAttributeType("ConcatenatedOperationRefType",
01879:                            java.lang.Object.class);
01880:
01881:            /**
01882:             * <p>
01883:             *  <pre>
01884:             *   <code>
01885:             *  &lt;complexType name="KnotPropertyType"&gt;
01886:             *      &lt;annotation&gt;
01887:             *          &lt;documentation&gt;Encapsulates a knot to use it in a geometric type.&lt;/documentation&gt;
01888:             *      &lt;/annotation&gt;
01889:             *      &lt;sequence&gt;
01890:             *          &lt;element name="Knot" type="gml:KnotType"/&gt;
01891:             *      &lt;/sequence&gt;
01892:             *  &lt;/complexType&gt;
01893:             *
01894:             *    </code>
01895:             *   </pre>
01896:             * </p>
01897:             *
01898:             * @generated
01899:             */
01900:            public static final AttributeType KNOTPROPERTYTYPE_TYPE = AttributeTypeFactory
01901:                    .newAttributeType("KnotPropertyType",
01902:                            java.lang.Object.class);
01903:
01904:            /**
01905:             * <p>
01906:             *  <pre>
01907:             *   <code>
01908:             *  &lt;complexType name="ImageDatumRefType"&gt;
01909:             *      &lt;annotation&gt;
01910:             *          &lt;documentation&gt;Association to an image datum, either referencing or containing the definition of that datum. &lt;/documentation&gt;
01911:             *      &lt;/annotation&gt;
01912:             *      &lt;sequence minOccurs="0"&gt;
01913:             *          &lt;element ref="gml:ImageDatum"/&gt;
01914:             *      &lt;/sequence&gt;
01915:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
01916:             *  &lt;/complexType&gt;
01917:             *
01918:             *    </code>
01919:             *   </pre>
01920:             * </p>
01921:             *
01922:             * @generated
01923:             */
01924:            public static final AttributeType IMAGEDATUMREFTYPE_TYPE = AttributeTypeFactory
01925:                    .newAttributeType("ImageDatumRefType",
01926:                            java.lang.Object.class);
01927:
01928:            /**
01929:             * <p>
01930:             *  <pre>
01931:             *   <code>
01932:             *  &lt;complexType abstract="true" name="AbstractSurfacePatchType"&gt;
01933:             *      &lt;annotation&gt;
01934:             *          &lt;documentation&gt;A surface patch defines a homogenuous portion of a surface.&lt;/documentation&gt;
01935:             *      &lt;/annotation&gt;
01936:             *      &lt;sequence/&gt;
01937:             *  &lt;/complexType&gt;
01938:             *
01939:             *    </code>
01940:             *   </pre>
01941:             * </p>
01942:             *
01943:             * @generated
01944:             */
01945:            public static final AttributeType ABSTRACTSURFACEPATCHTYPE_TYPE = AttributeTypeFactory
01946:                    .newAttributeType("AbstractSurfacePatchType",
01947:                            java.lang.Object.class);
01948:
01949:            /**
01950:             * <p>
01951:             *  <pre>
01952:             *   <code>
01953:             *  &lt;simpleType name="DegreeValueType"&gt;
01954:             *      &lt;annotation&gt;
01955:             *          &lt;documentation&gt;Integer number of degrees in a degree-minute-second or degree-minute angular value, without indication of direction.&lt;/documentation&gt;
01956:             *      &lt;/annotation&gt;
01957:             *      &lt;restriction base="nonNegativeInteger"&gt;
01958:             *          &lt;maxInclusive value="359"/&gt;
01959:             *      &lt;/restriction&gt;
01960:             *  &lt;/simpleType&gt;
01961:             *
01962:             *    </code>
01963:             *   </pre>
01964:             * </p>
01965:             *
01966:             * @generated
01967:             */
01968:            public static final AttributeType DEGREEVALUETYPE_TYPE = AttributeTypeFactory
01969:                    .newAttributeType("DegreeValueType", java.lang.Object.class);
01970:
01971:            /**
01972:             * <p>
01973:             *  <pre>
01974:             *   <code>
01975:             *  &lt;complexType mixed="true" name="GenericMetaDataType"&gt;
01976:             *      &lt;annotation&gt;
01977:             *          &lt;documentation&gt;Deprecated with GML version 3.1.0.&lt;/documentation&gt;
01978:             *      &lt;/annotation&gt;
01979:             *      &lt;complexContent mixed="true"&gt;
01980:             *          &lt;extension base="gml:AbstractMetaDataType"&gt;
01981:             *              &lt;sequence&gt;
01982:             *                  &lt;any maxOccurs="unbounded" minOccurs="0" processContents="lax"/&gt;
01983:             *              &lt;/sequence&gt;
01984:             *          &lt;/extension&gt;
01985:             *      &lt;/complexContent&gt;
01986:             *  &lt;/complexType&gt;
01987:             *
01988:             *    </code>
01989:             *   </pre>
01990:             * </p>
01991:             *
01992:             * @generated
01993:             */
01994:            public static final AttributeType GENERICMETADATATYPE_TYPE = AttributeTypeFactory
01995:                    .newAttributeType("GenericMetaDataType",
01996:                            java.lang.Object.class);
01997:
01998:            /**
01999:             * <p>
02000:             *  <pre>
02001:             *   <code>
02002:             *  &lt;complexType name="GeodesicType"&gt;
02003:             *      &lt;annotation&gt;
02004:             *          &lt;documentation&gt;A Geodesic consists of two distinct
02005:             *     positions joined by a geodesic curve. The control points of
02006:             *     a Geodesic shall lie on the geodesic between its start
02007:             *     point and end points. Between these two points, a geodesic
02008:             *     curve defined from ellipsoid or geoid model used by the
02009:             *     co-ordinate reference systems may be used to interpolate
02010:             *     other positions. Any other point in the controlPoint array
02011:             *     must fall on this geodesic.&lt;/documentation&gt;
02012:             *      &lt;/annotation&gt;
02013:             *      &lt;complexContent&gt;
02014:             *          &lt;extension base="gml:GeodesicStringType"/&gt;
02015:             *      &lt;/complexContent&gt;
02016:             *  &lt;/complexType&gt;
02017:             *
02018:             *    </code>
02019:             *   </pre>
02020:             * </p>
02021:             *
02022:             * @generated
02023:             */
02024:            public static final AttributeType GEODESICTYPE_TYPE = AttributeTypeFactory
02025:                    .newAttributeType("GeodesicType", java.lang.Object.class);
02026:
02027:            /**
02028:             * <p>
02029:             *  <pre>
02030:             *   <code>
02031:             *  &lt;complexType name="ScaleType"&gt;
02032:             *      &lt;annotation&gt;
02033:             *          &lt;documentation&gt;Value of a scale factor (or ratio) that has no physical unit. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a scale factor, such as percent, permil, or parts-per-million.&lt;/documentation&gt;
02034:             *      &lt;/annotation&gt;
02035:             *      &lt;simpleContent&gt;
02036:             *          &lt;restriction base="gml:MeasureType"/&gt;
02037:             *      &lt;/simpleContent&gt;
02038:             *  &lt;/complexType&gt;
02039:             *
02040:             *    </code>
02041:             *   </pre>
02042:             * </p>
02043:             *
02044:             * @generated
02045:             */
02046:            public static final AttributeType SCALETYPE_TYPE = AttributeTypeFactory
02047:                    .newAttributeType("ScaleType", java.lang.Object.class);
02048:
02049:            /**
02050:             * <p>
02051:             *  <pre>
02052:             *   <code>
02053:             *  &lt;complexType name="TimeOrdinalReferenceSystemType"&gt;
02054:             *      &lt;annotation&gt;
02055:             *          &lt;documentation xml:lang="en"&gt;In an ordinal reference system the order of events in time can be well
02056:             *        established, but the magnitude of the intervals between them can not be
02057:             *        accurately determined (e.g. a stratigraphic sequence).&lt;/documentation&gt;
02058:             *      &lt;/annotation&gt;
02059:             *      &lt;complexContent&gt;
02060:             *          &lt;extension base="gml:AbstractTimeReferenceSystemType"&gt;
02061:             *              &lt;sequence&gt;
02062:             *                  &lt;element maxOccurs="unbounded" name="component" type="gml:TimeOrdinalEraPropertyType"/&gt;
02063:             *              &lt;/sequence&gt;
02064:             *          &lt;/extension&gt;
02065:             *      &lt;/complexContent&gt;
02066:             *  &lt;/complexType&gt;
02067:             *
02068:             *    </code>
02069:             *   </pre>
02070:             * </p>
02071:             *
02072:             * @generated
02073:             */
02074:            public static final AttributeType TIMEORDINALREFERENCESYSTEMTYPE_TYPE = AttributeTypeFactory
02075:                    .newAttributeType("TimeOrdinalReferenceSystemType",
02076:                            java.lang.Object.class);
02077:
02078:            /**
02079:             * <p>
02080:             *  <pre>
02081:             *   <code>
02082:             *  &lt;complexType abstract="true" name="AbstractGeneralDerivedCRSType"&gt;
02083:             *      &lt;annotation&gt;
02084:             *          &lt;documentation&gt;A coordinate reference system that is defined by its coordinate conversion from another coordinate reference system (not by a datum). This abstract complexType shall not be used, extended, or restricted, in an Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document. &lt;/documentation&gt;
02085:             *      &lt;/annotation&gt;
02086:             *      &lt;complexContent&gt;
02087:             *          &lt;extension base="gml:AbstractReferenceSystemType"&gt;
02088:             *              &lt;sequence&gt;
02089:             *                  &lt;element ref="gml:baseCRS"/&gt;
02090:             *                  &lt;element ref="gml:definedByConversion"/&gt;
02091:             *              &lt;/sequence&gt;
02092:             *          &lt;/extension&gt;
02093:             *      &lt;/complexContent&gt;
02094:             *  &lt;/complexType&gt;
02095:             *
02096:             *    </code>
02097:             *   </pre>
02098:             * </p>
02099:             *
02100:             * @generated
02101:             */
02102:            public static final AttributeType ABSTRACTGENERALDERIVEDCRSTYPE_TYPE = AttributeTypeFactory
02103:                    .newAttributeType("AbstractGeneralDerivedCRSType",
02104:                            java.lang.Object.class);
02105:
02106:            /**
02107:             * <p>
02108:             *  <pre>
02109:             *   <code>
02110:             *  &lt;complexType abstract="true" name="AbstractContinuousCoverageType"&gt;
02111:             *      &lt;annotation&gt;
02112:             *          &lt;documentation&gt;A continuous coverage as defined in ISO 19123 is a coverage that can return different values for the same feature attribute at different direct positions within a single spatiotemporal object in its spatiotemporal domain&lt;/documentation&gt;
02113:             *      &lt;/annotation&gt;
02114:             *      &lt;complexContent&gt;
02115:             *          &lt;extension base="gml:AbstractCoverageType"&gt;
02116:             *              &lt;sequence&gt;
02117:             *                  &lt;element minOccurs="0" ref="gml:coverageFunction"/&gt;
02118:             *              &lt;/sequence&gt;
02119:             *          &lt;/extension&gt;
02120:             *      &lt;/complexContent&gt;
02121:             *  &lt;/complexType&gt;
02122:             *
02123:             *    </code>
02124:             *   </pre>
02125:             * </p>
02126:             *
02127:             * @generated
02128:             */
02129:            public static final AttributeType ABSTRACTCONTINUOUSCOVERAGETYPE_TYPE = AttributeTypeFactory
02130:                    .newAttributeType("AbstractContinuousCoverageType",
02131:                            java.lang.Object.class);
02132:
02133:            /**
02134:             * <p>
02135:             *  <pre>
02136:             *   <code>
02137:             *  &lt;complexType name="CompoundCRSRefType"&gt;
02138:             *      &lt;annotation&gt;
02139:             *          &lt;documentation&gt;Association to a compound coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
02140:             *      &lt;/annotation&gt;
02141:             *      &lt;sequence minOccurs="0"&gt;
02142:             *          &lt;element ref="gml:CompoundCRS"/&gt;
02143:             *      &lt;/sequence&gt;
02144:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02145:             *  &lt;/complexType&gt;
02146:             *
02147:             *    </code>
02148:             *   </pre>
02149:             * </p>
02150:             *
02151:             * @generated
02152:             */
02153:            public static final AttributeType COMPOUNDCRSREFTYPE_TYPE = AttributeTypeFactory
02154:                    .newAttributeType("CompoundCRSRefType",
02155:                            java.lang.Object.class);
02156:
02157:            /**
02158:             * <p>
02159:             *  <pre>
02160:             *   <code>
02161:             *  &lt;complexType final="#all" name="TimeClockType"&gt;
02162:             *      &lt;annotation&gt;
02163:             *          &lt;documentation xml:lang="en"&gt;A clock provides a basis for defining temporal position within a day.
02164:             *        A clock must be used with a calendar in order to provide a complete description of a temporal position
02165:             *        within a specific day.&lt;/documentation&gt;
02166:             *      &lt;/annotation&gt;
02167:             *      &lt;complexContent&gt;
02168:             *          &lt;extension base="gml:AbstractTimeReferenceSystemType"&gt;
02169:             *              &lt;sequence&gt;
02170:             *                  &lt;element name="referenceEvent" type="gml:StringOrRefType"&gt;
02171:             *                      &lt;annotation&gt;
02172:             *                          &lt;documentation&gt;Name or description of an event, such as solar noon or sunrise,
02173:             *                which fixes the position of the base scale of the clock.&lt;/documentation&gt;
02174:             *                      &lt;/annotation&gt;
02175:             *                  &lt;/element&gt;
02176:             *                  &lt;element name="referenceTime" type="time"&gt;
02177:             *                      &lt;annotation&gt;
02178:             *                          &lt;documentation&gt;time of day associated with the reference event expressed as
02179:             *                a time of day in the given clock. The reference time is usually the origin of the clock scale.&lt;/documentation&gt;
02180:             *                      &lt;/annotation&gt;
02181:             *                  &lt;/element&gt;
02182:             *                  &lt;element name="utcReference" type="time"&gt;
02183:             *                      &lt;annotation&gt;
02184:             *                          &lt;documentation&gt;24 hour local or UTC time that corresponds to the reference time.&lt;/documentation&gt;
02185:             *                      &lt;/annotation&gt;
02186:             *                  &lt;/element&gt;
02187:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
02188:             *                      name="dateBasis" type="gml:TimeCalendarPropertyType"/&gt;
02189:             *              &lt;/sequence&gt;
02190:             *          &lt;/extension&gt;
02191:             *      &lt;/complexContent&gt;
02192:             *  &lt;/complexType&gt;
02193:             *
02194:             *    </code>
02195:             *   </pre>
02196:             * </p>
02197:             *
02198:             * @generated
02199:             */
02200:            public static final AttributeType TIMECLOCKTYPE_TYPE = AttributeTypeFactory
02201:                    .newAttributeType("TimeClockType", java.lang.Object.class);
02202:
02203:            /**
02204:             * <p>
02205:             *  <pre>
02206:             *   <code>
02207:             *  &lt;simpleType name="NameOrNullList"&gt;
02208:             *      &lt;annotation&gt;
02209:             *          &lt;documentation&gt;XML List based on the union type defined above.  An element declared with this type contains a space-separated list of Name values with null values interspersed as needed&lt;/documentation&gt;
02210:             *      &lt;/annotation&gt;
02211:             *      &lt;list itemType="gml:NameOrNull"/&gt;
02212:             *  &lt;/simpleType&gt;
02213:             *
02214:             *    </code>
02215:             *   </pre>
02216:             * </p>
02217:             *
02218:             * @generated
02219:             */
02220:            public static final AttributeType NAMEORNULLLIST_TYPE = AttributeTypeFactory
02221:                    .newAttributeType("NameOrNullList", java.lang.Object.class);
02222:
02223:            /**
02224:             * <p>
02225:             *  <pre>
02226:             *   <code>
02227:             *  &lt;complexType name="MultiSurfaceCoverageType"&gt;
02228:             *      &lt;annotation&gt;
02229:             *          &lt;documentation&gt;A discrete coverage type whose domain is defined by a collection of surface patches (includes polygons, triangles, rectangles, etc).&lt;/documentation&gt;
02230:             *      &lt;/annotation&gt;
02231:             *      &lt;complexContent&gt;
02232:             *          &lt;restriction base="gml:AbstractDiscreteCoverageType"&gt;
02233:             *              &lt;sequence&gt;
02234:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
02235:             *                  &lt;element minOccurs="0" ref="gml:boundedBy"/&gt;
02236:             *                  &lt;element ref="gml:multiSurfaceDomain"/&gt;
02237:             *                  &lt;element ref="gml:rangeSet"/&gt;
02238:             *                  &lt;element minOccurs="0" ref="gml:coverageFunction"/&gt;
02239:             *              &lt;/sequence&gt;
02240:             *          &lt;/restriction&gt;
02241:             *      &lt;/complexContent&gt;
02242:             *  &lt;/complexType&gt;
02243:             *
02244:             *    </code>
02245:             *   </pre>
02246:             * </p>
02247:             *
02248:             * @generated
02249:             */
02250:            public static final AttributeType MULTISURFACECOVERAGETYPE_TYPE = AttributeTypeFactory
02251:                    .newAttributeType("MultiSurfaceCoverageType",
02252:                            java.lang.Object.class);
02253:
02254:            /**
02255:             * <p>
02256:             *  <pre>
02257:             *   <code>
02258:             *  &lt;complexType name="TopologyStyleType"&gt;
02259:             *      &lt;annotation&gt;
02260:             *          &lt;documentation&gt;[complexType of] The style descriptor for topologies of a feature. Describes individual topology elements styles.&lt;/documentation&gt;
02261:             *      &lt;/annotation&gt;
02262:             *      &lt;complexContent&gt;
02263:             *          &lt;extension base="gml:BaseStyleDescriptorType"&gt;
02264:             *              &lt;sequence&gt;
02265:             *                  &lt;choice&gt;
02266:             *                      &lt;element ref="gml:symbol"/&gt;
02267:             *                      &lt;element name="style" type="string"&gt;
02268:             *                          &lt;annotation&gt;
02269:             *                              &lt;appinfo&gt;deprecated&lt;/appinfo&gt;
02270:             *                              &lt;documentation&gt;Deprecated in GML version 3.1.0. Use symbol with inline content instead.&lt;/documentation&gt;
02271:             *                          &lt;/annotation&gt;
02272:             *                      &lt;/element&gt;
02273:             *                  &lt;/choice&gt;
02274:             *                  &lt;element minOccurs="0" ref="gml:labelStyle"/&gt;
02275:             *              &lt;/sequence&gt;
02276:             *              &lt;attribute name="topologyProperty" type="string"/&gt;
02277:             *              &lt;attribute name="topologyType" type="string"/&gt;
02278:             *          &lt;/extension&gt;
02279:             *      &lt;/complexContent&gt;
02280:             *  &lt;/complexType&gt;
02281:             *
02282:             *    </code>
02283:             *   </pre>
02284:             * </p>
02285:             *
02286:             * @generated
02287:             */
02288:            public static final AttributeType TOPOLOGYSTYLETYPE_TYPE = AttributeTypeFactory
02289:                    .newAttributeType("TopologyStyleType",
02290:                            java.lang.Object.class);
02291:
02292:            /**
02293:             * <p>
02294:             *  <pre>
02295:             *   <code>
02296:             *  &lt;complexType name="LinearRingPropertyType"&gt;
02297:             *      &lt;annotation&gt;
02298:             *          &lt;documentation&gt;Encapsulates a ring to represent properties in features or geometry collections.&lt;/documentation&gt;
02299:             *      &lt;/annotation&gt;
02300:             *      &lt;choice&gt;
02301:             *          &lt;element ref="gml:LinearRing"/&gt;
02302:             *      &lt;/choice&gt;
02303:             *  &lt;/complexType&gt;
02304:             *
02305:             *    </code>
02306:             *   </pre>
02307:             * </p>
02308:             *
02309:             * @generated
02310:             */
02311:            public static final AttributeType LINEARRINGPROPERTYTYPE_TYPE = AttributeTypeFactory
02312:                    .newAttributeType("LinearRingPropertyType",
02313:                            java.lang.Object.class);
02314:
02315:            /**
02316:             * <p>
02317:             *  <pre>
02318:             *   <code>
02319:             *  &lt;complexType name="AbsoluteExternalPositionalAccuracyType"&gt;
02320:             *      &lt;annotation&gt;
02321:             *          &lt;documentation&gt;Closeness of reported coordinate values to values accepted as or being true. &lt;/documentation&gt;
02322:             *      &lt;/annotation&gt;
02323:             *      &lt;complexContent&gt;
02324:             *          &lt;extension base="gml:AbstractPositionalAccuracyType"&gt;
02325:             *              &lt;sequence&gt;
02326:             *                  &lt;element ref="gml:result"/&gt;
02327:             *              &lt;/sequence&gt;
02328:             *          &lt;/extension&gt;
02329:             *      &lt;/complexContent&gt;
02330:             *  &lt;/complexType&gt;
02331:             *
02332:             *    </code>
02333:             *   </pre>
02334:             * </p>
02335:             *
02336:             * @generated
02337:             */
02338:            public static final AttributeType ABSOLUTEEXTERNALPOSITIONALACCURACYTYPE_TYPE = AttributeTypeFactory
02339:                    .newAttributeType("AbsoluteExternalPositionalAccuracyType",
02340:                            java.lang.Object.class);
02341:
02342:            /**
02343:             * <p>
02344:             *  <pre>
02345:             *   <code>
02346:             *  &lt;complexType name="DMSAngleType"&gt;
02347:             *      &lt;annotation&gt;
02348:             *          &lt;documentation&gt;Angle value provided in degree-minute-second or degree-minute format.&lt;/documentation&gt;
02349:             *      &lt;/annotation&gt;
02350:             *      &lt;sequence&gt;
02351:             *          &lt;element ref="gml:degrees"/&gt;
02352:             *          &lt;choice minOccurs="0"&gt;
02353:             *              &lt;element ref="gml:decimalMinutes"/&gt;
02354:             *              &lt;sequence&gt;
02355:             *                  &lt;element ref="gml:minutes"/&gt;
02356:             *                  &lt;element minOccurs="0" ref="gml:seconds"/&gt;
02357:             *              &lt;/sequence&gt;
02358:             *          &lt;/choice&gt;
02359:             *      &lt;/sequence&gt;
02360:             *  &lt;/complexType&gt;
02361:             *
02362:             *    </code>
02363:             *   </pre>
02364:             * </p>
02365:             *
02366:             * @generated
02367:             */
02368:            public static final AttributeType DMSANGLETYPE_TYPE = AttributeTypeFactory
02369:                    .newAttributeType("DMSAngleType", java.lang.Object.class);
02370:
02371:            /**
02372:             * <p>
02373:             *  <pre>
02374:             *   <code>
02375:             *  &lt;complexType name="TopoCurvePropertyType"&gt;
02376:             *      &lt;sequence&gt;
02377:             *          &lt;element ref="gml:TopoCurve"/&gt;
02378:             *      &lt;/sequence&gt;
02379:             *  &lt;/complexType&gt;
02380:             *
02381:             *    </code>
02382:             *   </pre>
02383:             * </p>
02384:             *
02385:             * @generated
02386:             */
02387:            public static final AttributeType TOPOCURVEPROPERTYTYPE_TYPE = AttributeTypeFactory
02388:                    .newAttributeType("TopoCurvePropertyType",
02389:                            java.lang.Object.class);
02390:
02391:            /**
02392:             * <p>
02393:             *  <pre>
02394:             *   <code>
02395:             *  &lt;simpleType name="GraphTypeType"&gt;
02396:             *      &lt;annotation&gt;
02397:             *          &lt;documentation&gt;Graph-specific styling property.&lt;/documentation&gt;
02398:             *      &lt;/annotation&gt;
02399:             *      &lt;restriction base="string"&gt;
02400:             *          &lt;enumeration value="TREE"/&gt;
02401:             *          &lt;enumeration value="BICONNECTED"/&gt;
02402:             *      &lt;/restriction&gt;
02403:             *  &lt;/simpleType&gt;
02404:             *
02405:             *    </code>
02406:             *   </pre>
02407:             * </p>
02408:             *
02409:             * @generated
02410:             */
02411:            public static final AttributeType GRAPHTYPETYPE_TYPE = AttributeTypeFactory
02412:                    .newAttributeType("GraphTypeType", java.lang.Object.class);
02413:
02414:            /**
02415:             * <p>
02416:             *  <pre>
02417:             *   <code>
02418:             *  &lt;complexType name="OperationRefType"&gt;
02419:             *      &lt;annotation&gt;
02420:             *          &lt;documentation&gt;Association to an abstract operation, either referencing or containing the definition of that operation. &lt;/documentation&gt;
02421:             *      &lt;/annotation&gt;
02422:             *      &lt;sequence minOccurs="0"&gt;
02423:             *          &lt;element ref="gml:_Operation"/&gt;
02424:             *      &lt;/sequence&gt;
02425:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02426:             *  &lt;/complexType&gt;
02427:             *
02428:             *    </code>
02429:             *   </pre>
02430:             * </p>
02431:             *
02432:             * @generated
02433:             */
02434:            public static final AttributeType OPERATIONREFTYPE_TYPE = AttributeTypeFactory
02435:                    .newAttributeType("OperationRefType",
02436:                            java.lang.Object.class);
02437:
02438:            /**
02439:             * <p>
02440:             *  <pre>
02441:             *   <code>
02442:             *  &lt;complexType name="FaceType"&gt;
02443:             *      &lt;annotation&gt;
02444:             *          &lt;documentation&gt;. The topological boundary of a face consists of a set of directed edges. Note that all edges associated with a Face, including dangling and interior edges, appear in the boundary.  Dangling and interior edges are each referenced by pairs of directedEdges with opposing orientations.  The optional coboundary of a face is a pair of directed solids which are bounded by this face. If present, there is precisely one positively directed and one negatively directed solid in the coboundary of every face. The positively directed solid corresponds to the solid which lies in the direction of the positively directed normal to the face in any geometric realisation.  A face may optionally be realised by a 2-dimensional (surface) geometric primitive.&lt;/documentation&gt;
02445:             *      &lt;/annotation&gt;
02446:             *      &lt;complexContent&gt;
02447:             *          &lt;extension base="gml:AbstractTopoPrimitiveType"&gt;
02448:             *              &lt;sequence&gt;
02449:             *                  &lt;element maxOccurs="unbounded" ref="gml:directedEdge"/&gt;
02450:             *                  &lt;element maxOccurs="2" minOccurs="0" ref="gml:directedTopoSolid"/&gt;
02451:             *                  &lt;element minOccurs="0" ref="gml:surfaceProperty"/&gt;
02452:             *              &lt;/sequence&gt;
02453:             *          &lt;/extension&gt;
02454:             *      &lt;/complexContent&gt;
02455:             *  &lt;/complexType&gt;
02456:             *
02457:             *    </code>
02458:             *   </pre>
02459:             * </p>
02460:             *
02461:             * @generated
02462:             */
02463:            public static final AttributeType FACETYPE_TYPE = AttributeTypeFactory
02464:                    .newAttributeType("FaceType", java.lang.Object.class);
02465:
02466:            /**
02467:             * <p>
02468:             *  <pre>
02469:             *   <code>
02470:             *  &lt;simpleType name="stringOrNull"&gt;
02471:             *      &lt;annotation&gt;
02472:             *          &lt;documentation&gt;Union of the XML Schema string type and the GML Nulltype.  An element which uses this type may have content which is either a string or a value from Nulltype.  Note that a "string" may contain whitespace.  &lt;/documentation&gt;
02473:             *      &lt;/annotation&gt;
02474:             *      &lt;union memberTypes="gml:NullEnumeration string anyURI"/&gt;
02475:             *  &lt;/simpleType&gt;
02476:             *
02477:             *    </code>
02478:             *   </pre>
02479:             * </p>
02480:             *
02481:             * @generated
02482:             */
02483:            public static final AttributeType STRINGORNULL_TYPE = AttributeTypeFactory
02484:                    .newAttributeType("stringOrNull", java.lang.Object.class);
02485:
02486:            /**
02487:             * <p>
02488:             *  <pre>
02489:             *   <code>
02490:             *  &lt;complexType name="ObliqueCartesianCSType"&gt;
02491:             *      &lt;annotation&gt;
02492:             *          &lt;documentation&gt;A two- or three-dimensional coordinate system with straight axes that are not necessarily orthogonal. An ObliqueCartesianCS shall have two or three usesAxis associations. &lt;/documentation&gt;
02493:             *      &lt;/annotation&gt;
02494:             *      &lt;complexContent&gt;
02495:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
02496:             *      &lt;/complexContent&gt;
02497:             *  &lt;/complexType&gt;
02498:             *
02499:             *    </code>
02500:             *   </pre>
02501:             * </p>
02502:             *
02503:             * @generated
02504:             */
02505:            public static final AttributeType OBLIQUECARTESIANCSTYPE_TYPE = AttributeTypeFactory
02506:                    .newAttributeType("ObliqueCartesianCSType",
02507:                            java.lang.Object.class);
02508:
02509:            /**
02510:             * <p>
02511:             *  <pre>
02512:             *   <code>
02513:             *  &lt;complexType name="StyleVariationType"&gt;
02514:             *      &lt;annotation&gt;
02515:             *          &lt;documentation&gt;Used to vary individual graphic parameters and attributes of the style, symbol or text.&lt;/documentation&gt;
02516:             *      &lt;/annotation&gt;
02517:             *      &lt;simpleContent&gt;
02518:             *          &lt;extension base="string"&gt;
02519:             *              &lt;attribute name="styleProperty" type="string" use="required"/&gt;
02520:             *              &lt;attribute name="featurePropertyRange" type="string" use="optional"/&gt;
02521:             *          &lt;/extension&gt;
02522:             *      &lt;/simpleContent&gt;
02523:             *  &lt;/complexType&gt;
02524:             *
02525:             *    </code>
02526:             *   </pre>
02527:             * </p>
02528:             *
02529:             * @generated
02530:             */
02531:            public static final AttributeType STYLEVARIATIONTYPE_TYPE = AttributeTypeFactory
02532:                    .newAttributeType("StyleVariationType",
02533:                            java.lang.Object.class);
02534:
02535:            /**
02536:             * <p>
02537:             *  <pre>
02538:             *   <code>
02539:             *  &lt;complexType name="PolygonPatchArrayPropertyType"&gt;
02540:             *      &lt;annotation&gt;
02541:             *          &lt;documentation&gt;This type defines a container for an array of
02542:             *     polygon patches.&lt;/documentation&gt;
02543:             *      &lt;/annotation&gt;
02544:             *      &lt;complexContent&gt;
02545:             *          &lt;restriction base="gml:SurfacePatchArrayPropertyType"&gt;
02546:             *              &lt;sequence maxOccurs="unbounded" minOccurs="0"&gt;
02547:             *                  &lt;element ref="gml:PolygonPatch"/&gt;
02548:             *              &lt;/sequence&gt;
02549:             *          &lt;/restriction&gt;
02550:             *      &lt;/complexContent&gt;
02551:             *  &lt;/complexType&gt;
02552:             *
02553:             *    </code>
02554:             *   </pre>
02555:             * </p>
02556:             *
02557:             * @generated
02558:             */
02559:            public static final AttributeType POLYGONPATCHARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
02560:                    .newAttributeType("PolygonPatchArrayPropertyType",
02561:                            java.lang.Object.class);
02562:
02563:            /**
02564:             * <p>
02565:             *  <pre>
02566:             *   <code>
02567:             *  &lt;complexType name="UnitOfMeasureType"&gt;
02568:             *      &lt;annotation&gt;
02569:             *          &lt;documentation&gt;Reference to a unit of measure definition that applies to all the numerical values described by the element containing this element. Notice that a complexType which needs to include the uom attribute can do so by extending this complexType. Alternately, this complexType can be used as a pattern for a new complexType.&lt;/documentation&gt;
02570:             *      &lt;/annotation&gt;
02571:             *      &lt;sequence/&gt;
02572:             *      &lt;attribute name="uom" type="anyURI" use="required"&gt;
02573:             *          &lt;annotation&gt;
02574:             *              &lt;documentation&gt;Reference to a unit of measure definition, usually within the same XML document but possibly outside the XML document which contains this reference. For a reference within the same XML document, the "#" symbol should be used, followed by a text abbreviation of the unit name. However, the "#" symbol may be optional, and still may be interpreted as a reference.&lt;/documentation&gt;
02575:             *          &lt;/annotation&gt;
02576:             *      &lt;/attribute&gt;
02577:             *  &lt;/complexType&gt;
02578:             *
02579:             *    </code>
02580:             *   </pre>
02581:             * </p>
02582:             *
02583:             * @generated
02584:             */
02585:            public static final AttributeType UNITOFMEASURETYPE_TYPE = AttributeTypeFactory
02586:                    .newAttributeType("UnitOfMeasureType",
02587:                            java.lang.Object.class);
02588:
02589:            /**
02590:             * <p>
02591:             *  <pre>
02592:             *   <code>
02593:             *  &lt;complexType name="RectifiedGridCoverageType"&gt;
02594:             *      &lt;complexContent&gt;
02595:             *          &lt;restriction base="gml:AbstractDiscreteCoverageType"&gt;
02596:             *              &lt;sequence&gt;
02597:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
02598:             *                  &lt;element minOccurs="0" ref="gml:boundedBy"/&gt;
02599:             *                  &lt;element ref="gml:rectifiedGridDomain"/&gt;
02600:             *                  &lt;element ref="gml:rangeSet"/&gt;
02601:             *                  &lt;element minOccurs="0" ref="gml:coverageFunction"/&gt;
02602:             *              &lt;/sequence&gt;
02603:             *          &lt;/restriction&gt;
02604:             *      &lt;/complexContent&gt;
02605:             *  &lt;/complexType&gt;
02606:             *
02607:             *    </code>
02608:             *   </pre>
02609:             * </p>
02610:             *
02611:             * @generated
02612:             */
02613:            public static final AttributeType RECTIFIEDGRIDCOVERAGETYPE_TYPE = AttributeTypeFactory
02614:                    .newAttributeType("RectifiedGridCoverageType",
02615:                            java.lang.Object.class);
02616:
02617:            /**
02618:             * <p>
02619:             *  <pre>
02620:             *   <code>
02621:             *  &lt;complexType name="ConversionType"&gt;
02622:             *      &lt;annotation&gt;
02623:             *          &lt;documentation&gt;A concrete operation on coordinates that does not include any change of Datum. The best-known example of a coordinate conversion is a map projection. The parameters describing coordinate conversions are defined rather than empirically derived. Note that some conversions have no parameters.
02624:             *
02625:             *  This concrete complexType can be used with all operation methods, without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one Conversion instance. &lt;/documentation&gt;
02626:             *      &lt;/annotation&gt;
02627:             *      &lt;complexContent&gt;
02628:             *          &lt;extension base="gml:AbstractGeneralConversionType"&gt;
02629:             *              &lt;sequence&gt;
02630:             *                  &lt;element ref="gml:usesMethod"/&gt;
02631:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:usesValue"&gt;
02632:             *                      &lt;annotation&gt;
02633:             *                          &lt;documentation&gt;Unordered list of composition associations to the set of parameter values used by this conversion operation. &lt;/documentation&gt;
02634:             *                      &lt;/annotation&gt;
02635:             *                  &lt;/element&gt;
02636:             *              &lt;/sequence&gt;
02637:             *          &lt;/extension&gt;
02638:             *      &lt;/complexContent&gt;
02639:             *  &lt;/complexType&gt;
02640:             *
02641:             *    </code>
02642:             *   </pre>
02643:             * </p>
02644:             *
02645:             * @generated
02646:             */
02647:            public static final AttributeType CONVERSIONTYPE_TYPE = AttributeTypeFactory
02648:                    .newAttributeType("ConversionType", java.lang.Object.class);
02649:
02650:            /**
02651:             * <p>
02652:             *  <pre>
02653:             *   <code>
02654:             *  &lt;complexType name="CRSRefType"&gt;
02655:             *      &lt;annotation&gt;
02656:             *          &lt;documentation&gt;Association to a CRS abstract coordinate reference system, either referencing or containing the definition of that CRS.&lt;/documentation&gt;
02657:             *      &lt;/annotation&gt;
02658:             *      &lt;sequence minOccurs="0"&gt;
02659:             *          &lt;element ref="gml:_CRS"/&gt;
02660:             *      &lt;/sequence&gt;
02661:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02662:             *  &lt;/complexType&gt;
02663:             *
02664:             *    </code>
02665:             *   </pre>
02666:             * </p>
02667:             *
02668:             * @generated
02669:             */
02670:            public static final AttributeType CRSREFTYPE_TYPE = AttributeTypeFactory
02671:                    .newAttributeType("CRSRefType", java.lang.Object.class);
02672:
02673:            /**
02674:             * <p>
02675:             *  <pre>
02676:             *   <code>
02677:             *  &lt;simpleType name="integerOrNullList"&gt;
02678:             *      &lt;annotation&gt;
02679:             *          &lt;documentation&gt;XML List based on the union type defined above.  An element declared with this type contains a space-separated list of integer values with null values interspersed as needed&lt;/documentation&gt;
02680:             *      &lt;/annotation&gt;
02681:             *      &lt;list itemType="gml:integerOrNull"/&gt;
02682:             *  &lt;/simpleType&gt;
02683:             *
02684:             *    </code>
02685:             *   </pre>
02686:             * </p>
02687:             *
02688:             * @generated
02689:             */
02690:            public static final AttributeType INTEGERORNULLLIST_TYPE = AttributeTypeFactory
02691:                    .newAttributeType("integerOrNullList",
02692:                            java.lang.Object.class);
02693:
02694:            /**
02695:             * <p>
02696:             *  <pre>
02697:             *   <code>
02698:             *  &lt;complexType name="CartesianCSRefType"&gt;
02699:             *      &lt;annotation&gt;
02700:             *          &lt;documentation&gt;Association to a Cartesian coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
02701:             *      &lt;/annotation&gt;
02702:             *      &lt;sequence minOccurs="0"&gt;
02703:             *          &lt;element ref="gml:CartesianCS"/&gt;
02704:             *      &lt;/sequence&gt;
02705:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02706:             *  &lt;/complexType&gt;
02707:             *
02708:             *    </code>
02709:             *   </pre>
02710:             * </p>
02711:             *
02712:             * @generated
02713:             */
02714:            public static final AttributeType CARTESIANCSREFTYPE_TYPE = AttributeTypeFactory
02715:                    .newAttributeType("CartesianCSRefType",
02716:                            java.lang.Object.class);
02717:
02718:            /**
02719:             * <p>
02720:             *  <pre>
02721:             *   <code>
02722:             *  &lt;complexType name="CoordinateReferenceSystemRefType"&gt;
02723:             *      &lt;annotation&gt;
02724:             *          &lt;documentation&gt;Association to a coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
02725:             *      &lt;/annotation&gt;
02726:             *      &lt;sequence minOccurs="0"&gt;
02727:             *          &lt;element ref="gml:_CoordinateReferenceSystem"/&gt;
02728:             *      &lt;/sequence&gt;
02729:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02730:             *  &lt;/complexType&gt;
02731:             *
02732:             *    </code>
02733:             *   </pre>
02734:             * </p>
02735:             *
02736:             * @generated
02737:             */
02738:            public static final AttributeType COORDINATEREFERENCESYSTEMREFTYPE_TYPE = AttributeTypeFactory
02739:                    .newAttributeType("CoordinateReferenceSystemRefType",
02740:                            java.lang.Object.class);
02741:
02742:            /**
02743:             * <p>
02744:             *  <pre>
02745:             *   <code>
02746:             *  &lt;complexType name="CompositeSurfacePropertyType"&gt;
02747:             *      &lt;sequence minOccurs="0"&gt;
02748:             *          &lt;element ref="gml:CompositeSurface"/&gt;
02749:             *      &lt;/sequence&gt;
02750:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02751:             *  &lt;/complexType&gt;
02752:             *
02753:             *    </code>
02754:             *   </pre>
02755:             * </p>
02756:             *
02757:             * @generated
02758:             */
02759:            public static final AttributeType COMPOSITESURFACEPROPERTYTYPE_TYPE = AttributeTypeFactory
02760:                    .newAttributeType("CompositeSurfacePropertyType",
02761:                            java.lang.Object.class);
02762:
02763:            /**
02764:             * <p>
02765:             *  <pre>
02766:             *   <code>
02767:             *  &lt;complexType name="CovarianceElementType"&gt;
02768:             *      &lt;annotation&gt;
02769:             *          &lt;documentation&gt;An element of a covariance matrix.&lt;/documentation&gt;
02770:             *      &lt;/annotation&gt;
02771:             *      &lt;sequence&gt;
02772:             *          &lt;element ref="gml:rowIndex"/&gt;
02773:             *          &lt;element ref="gml:columnIndex"/&gt;
02774:             *          &lt;element ref="gml:covariance"/&gt;
02775:             *      &lt;/sequence&gt;
02776:             *  &lt;/complexType&gt;
02777:             *
02778:             *    </code>
02779:             *   </pre>
02780:             * </p>
02781:             *
02782:             * @generated
02783:             */
02784:            public static final AttributeType COVARIANCEELEMENTTYPE_TYPE = AttributeTypeFactory
02785:                    .newAttributeType("CovarianceElementType",
02786:                            java.lang.Object.class);
02787:
02788:            /**
02789:             * <p>
02790:             *  <pre>
02791:             *   <code>
02792:             *  &lt;complexType name="MultiSolidDomainType"&gt;
02793:             *      &lt;complexContent&gt;
02794:             *          &lt;restriction base="gml:DomainSetType"&gt;
02795:             *              &lt;sequence minOccurs="0"&gt;
02796:             *                  &lt;element ref="gml:MultiSolid"/&gt;
02797:             *              &lt;/sequence&gt;
02798:             *              &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02799:             *          &lt;/restriction&gt;
02800:             *      &lt;/complexContent&gt;
02801:             *  &lt;/complexType&gt;
02802:             *
02803:             *    </code>
02804:             *   </pre>
02805:             * </p>
02806:             *
02807:             * @generated
02808:             */
02809:            public static final AttributeType MULTISOLIDDOMAINTYPE_TYPE = AttributeTypeFactory
02810:                    .newAttributeType("MultiSolidDomainType",
02811:                            java.lang.Object.class);
02812:
02813:            /**
02814:             * <p>
02815:             *  <pre>
02816:             *   <code>
02817:             *  &lt;complexType name="CylindricalCSRefType"&gt;
02818:             *      &lt;annotation&gt;
02819:             *          &lt;documentation&gt;Association to a cylindrical coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
02820:             *      &lt;/annotation&gt;
02821:             *      &lt;sequence minOccurs="0"&gt;
02822:             *          &lt;element ref="gml:CylindricalCS"/&gt;
02823:             *      &lt;/sequence&gt;
02824:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02825:             *  &lt;/complexType&gt;
02826:             *
02827:             *    </code>
02828:             *   </pre>
02829:             * </p>
02830:             *
02831:             * @generated
02832:             */
02833:            public static final AttributeType CYLINDRICALCSREFTYPE_TYPE = AttributeTypeFactory
02834:                    .newAttributeType("CylindricalCSRefType",
02835:                            java.lang.Object.class);
02836:
02837:            /**
02838:             * <p>
02839:             *  <pre>
02840:             *   <code>
02841:             *  &lt;complexType name="OperationParameterType"&gt;
02842:             *      &lt;annotation&gt;
02843:             *          &lt;documentation&gt;The definition of a parameter used by an operation method. Most parameter values are numeric, but other types of parameter values are possible. This complexType is expected to be used or extended for all operation methods, without defining operation-method-specialized element names.  &lt;/documentation&gt;
02844:             *      &lt;/annotation&gt;
02845:             *      &lt;complexContent&gt;
02846:             *          &lt;extension base="gml:OperationParameterBaseType"&gt;
02847:             *              &lt;sequence&gt;
02848:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:parameterID"&gt;
02849:             *                      &lt;annotation&gt;
02850:             *                          &lt;documentation&gt;Set of alternative identifications of this operation parameter. The first parameterID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
02851:             *                      &lt;/annotation&gt;
02852:             *                  &lt;/element&gt;
02853:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
02854:             *                      &lt;annotation&gt;
02855:             *                          &lt;documentation&gt;Comments on or information about this operation parameter, including source information. &lt;/documentation&gt;
02856:             *                      &lt;/annotation&gt;
02857:             *                  &lt;/element&gt;
02858:             *              &lt;/sequence&gt;
02859:             *          &lt;/extension&gt;
02860:             *      &lt;/complexContent&gt;
02861:             *  &lt;/complexType&gt;
02862:             *
02863:             *    </code>
02864:             *   </pre>
02865:             * </p>
02866:             *
02867:             * @generated
02868:             */
02869:            public static final AttributeType OPERATIONPARAMETERTYPE_TYPE = AttributeTypeFactory
02870:                    .newAttributeType("OperationParameterType",
02871:                            java.lang.Object.class);
02872:
02873:            /**
02874:             * <p>
02875:             *  <pre>
02876:             *   <code>
02877:             *  &lt;complexType name="TrianglePatchArrayPropertyType"&gt;
02878:             *      &lt;annotation&gt;
02879:             *          &lt;documentation&gt;This type defines a container for an array of
02880:             *       triangle patches.&lt;/documentation&gt;
02881:             *      &lt;/annotation&gt;
02882:             *      &lt;complexContent&gt;
02883:             *          &lt;restriction base="gml:SurfacePatchArrayPropertyType"&gt;
02884:             *              &lt;sequence maxOccurs="unbounded" minOccurs="0"&gt;
02885:             *                  &lt;element ref="gml:Triangle"/&gt;
02886:             *              &lt;/sequence&gt;
02887:             *          &lt;/restriction&gt;
02888:             *      &lt;/complexContent&gt;
02889:             *  &lt;/complexType&gt;
02890:             *
02891:             *    </code>
02892:             *   </pre>
02893:             * </p>
02894:             *
02895:             * @generated
02896:             */
02897:            public static final AttributeType TRIANGLEPATCHARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
02898:                    .newAttributeType("TrianglePatchArrayPropertyType",
02899:                            java.lang.Object.class);
02900:
02901:            /**
02902:             * <p>
02903:             *  <pre>
02904:             *   <code>
02905:             *  &lt;complexType name="CodeListType"&gt;
02906:             *      &lt;annotation&gt;
02907:             *          &lt;documentation&gt;List of values on a uniform nominal scale.  List of text tokens.
02908:             *        In a list context a token should not include any spaces, so xsd:Name is used instead of xsd:string.
02909:             *        If a codeSpace attribute is present, then its value is a reference to
02910:             *        a Reference System for the value, a dictionary or code list.&lt;/documentation&gt;
02911:             *      &lt;/annotation&gt;
02912:             *      &lt;simpleContent&gt;
02913:             *          &lt;extension base="gml:NameList"&gt;
02914:             *              &lt;attribute name="codeSpace" type="anyURI" use="optional"/&gt;
02915:             *          &lt;/extension&gt;
02916:             *      &lt;/simpleContent&gt;
02917:             *  &lt;/complexType&gt;
02918:             *
02919:             *    </code>
02920:             *   </pre>
02921:             * </p>
02922:             *
02923:             * @generated
02924:             */
02925:            public static final AttributeType CODELISTTYPE_TYPE = AttributeTypeFactory
02926:                    .newAttributeType("CodeListType", java.lang.Object.class);
02927:
02928:            /**
02929:             * <p>
02930:             *  <pre>
02931:             *   <code>
02932:             *  &lt;complexType name="CompositeCurvePropertyType"&gt;
02933:             *      &lt;sequence minOccurs="0"&gt;
02934:             *          &lt;element ref="gml:CompositeCurve"/&gt;
02935:             *      &lt;/sequence&gt;
02936:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
02937:             *  &lt;/complexType&gt;
02938:             *
02939:             *    </code>
02940:             *   </pre>
02941:             * </p>
02942:             *
02943:             * @generated
02944:             */
02945:            public static final AttributeType COMPOSITECURVEPROPERTYTYPE_TYPE = AttributeTypeFactory
02946:                    .newAttributeType("CompositeCurvePropertyType",
02947:                            java.lang.Object.class);
02948:
02949:            /**
02950:             * <p>
02951:             *  <pre>
02952:             *   <code>
02953:             *  &lt;complexType name="TimeEdgeType"&gt;
02954:             *      &lt;annotation&gt;
02955:             *          &lt;documentation xml:lang="en"&gt;Type declaration of the element "TimeEdge".&lt;/documentation&gt;
02956:             *      &lt;/annotation&gt;
02957:             *      &lt;complexContent&gt;
02958:             *          &lt;extension base="gml:AbstractTimeTopologyPrimitiveType"&gt;
02959:             *              &lt;sequence&gt;
02960:             *                  &lt;element name="start" type="gml:TimeNodePropertyType"/&gt;
02961:             *                  &lt;element name="end" type="gml:TimeNodePropertyType"/&gt;
02962:             *                  &lt;element minOccurs="0" name="extent" type="gml:TimePeriodPropertyType"/&gt;
02963:             *              &lt;/sequence&gt;
02964:             *          &lt;/extension&gt;
02965:             *      &lt;/complexContent&gt;
02966:             *  &lt;/complexType&gt;
02967:             *
02968:             *    </code>
02969:             *   </pre>
02970:             * </p>
02971:             *
02972:             * @generated
02973:             */
02974:            public static final AttributeType TIMEEDGETYPE_TYPE = AttributeTypeFactory
02975:                    .newAttributeType("TimeEdgeType", java.lang.Object.class);
02976:
02977:            /**
02978:             * <p>
02979:             *  <pre>
02980:             *   <code>
02981:             *  &lt;complexType name="DirectPositionListType"&gt;
02982:             *      &lt;annotation&gt;
02983:             *          &lt;documentation&gt;DirectPositionList instances hold the coordinates for a sequence of direct positions within the same coordinate
02984:             *                          reference system (CRS).&lt;/documentation&gt;
02985:             *      &lt;/annotation&gt;
02986:             *      &lt;simpleContent&gt;
02987:             *          &lt;extension base="gml:doubleList"&gt;
02988:             *              &lt;attributeGroup ref="gml:SRSReferenceGroup"/&gt;
02989:             *              &lt;attribute name="count" type="positiveInteger" use="optional"&gt;
02990:             *                  &lt;annotation&gt;
02991:             *                      &lt;documentation&gt;"count" allows to specify the number of direct positions in the list. If the attribute count is present then
02992:             *                                                  the attribute srsDimension shall be present, too.&lt;/documentation&gt;
02993:             *                  &lt;/annotation&gt;
02994:             *              &lt;/attribute&gt;
02995:             *          &lt;/extension&gt;
02996:             *      &lt;/simpleContent&gt;
02997:             *  &lt;/complexType&gt;
02998:             *
02999:             *    </code>
03000:             *   </pre>
03001:             * </p>
03002:             *
03003:             * @generated
03004:             */
03005:            public static final AttributeType DIRECTPOSITIONLISTTYPE_TYPE = AttributeTypeFactory
03006:                    .newAttributeType("DirectPositionListType",
03007:                            java.lang.Object.class);
03008:
03009:            /**
03010:             * <p>
03011:             *  <pre>
03012:             *   <code>
03013:             *  &lt;complexType name="DynamicFeatureCollectionType"&gt;
03014:             *      &lt;annotation&gt;
03015:             *          &lt;documentation&gt;A dynamic feature collection may possess a history and/or a timestamp.&lt;/documentation&gt;
03016:             *      &lt;/annotation&gt;
03017:             *      &lt;complexContent&gt;
03018:             *          &lt;extension base="gml:FeatureCollectionType"&gt;
03019:             *              &lt;group ref="gml:dynamicProperties"/&gt;
03020:             *          &lt;/extension&gt;
03021:             *      &lt;/complexContent&gt;
03022:             *  &lt;/complexType&gt;
03023:             *
03024:             *    </code>
03025:             *   </pre>
03026:             * </p>
03027:             *
03028:             * @generated
03029:             */
03030:            public static final AttributeType DYNAMICFEATURECOLLECTIONTYPE_TYPE = AttributeTypeFactory
03031:                    .newAttributeType("DynamicFeatureCollectionType",
03032:                            java.lang.Object.class);
03033:
03034:            /**
03035:             * <p>
03036:             *  <pre>
03037:             *   <code>
03038:             *  &lt;complexType name="TemporalCSType"&gt;
03039:             *      &lt;annotation&gt;
03040:             *          &lt;documentation&gt;A one-dimensional coordinate system containing a single time axis, used to describe the temporal position of a point in the specified time units from a specified time origin. A TemporalCS shall have one usesAxis association. &lt;/documentation&gt;
03041:             *      &lt;/annotation&gt;
03042:             *      &lt;complexContent&gt;
03043:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
03044:             *      &lt;/complexContent&gt;
03045:             *  &lt;/complexType&gt;
03046:             *
03047:             *    </code>
03048:             *   </pre>
03049:             * </p>
03050:             *
03051:             * @generated
03052:             */
03053:            public static final AttributeType TEMPORALCSTYPE_TYPE = AttributeTypeFactory
03054:                    .newAttributeType("TemporalCSType", java.lang.Object.class);
03055:
03056:            /**
03057:             * <p>
03058:             *  <pre>
03059:             *   <code>
03060:             *  &lt;complexType name="CurveSegmentArrayPropertyType"&gt;
03061:             *      &lt;annotation&gt;
03062:             *          &lt;documentation&gt;A container for an array of curve segments.&lt;/documentation&gt;
03063:             *      &lt;/annotation&gt;
03064:             *      &lt;sequence&gt;
03065:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_CurveSegment"/&gt;
03066:             *      &lt;/sequence&gt;
03067:             *  &lt;/complexType&gt;
03068:             *
03069:             *    </code>
03070:             *   </pre>
03071:             * </p>
03072:             *
03073:             * @generated
03074:             */
03075:            public static final AttributeType CURVESEGMENTARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
03076:                    .newAttributeType("CurveSegmentArrayPropertyType",
03077:                            java.lang.Object.class);
03078:
03079:            /**
03080:             * <p>
03081:             *  <pre>
03082:             *   <code>
03083:             *  &lt;complexType name="IdentifierType"&gt;
03084:             *      &lt;annotation&gt;
03085:             *          &lt;documentation&gt;An identification of a CRS object. The first use of the IdentifierType for an object, if any, is normally the primary identification code, and any others are aliases.&lt;/documentation&gt;
03086:             *      &lt;/annotation&gt;
03087:             *      &lt;sequence&gt;
03088:             *          &lt;element ref="gml:name"&gt;
03089:             *              &lt;annotation&gt;
03090:             *                  &lt;documentation&gt;The code or name for this Identifier, often from a controlled list or pattern defined by a code space. The optional codeSpace attribute is normally included to identify or reference a code space within which one or more codes are defined. This code space is often defined by some authority organization, where one organization may define multiple code spaces. The range and format of each Code Space identifier is defined by that code space authority. Information about that code space authority can be included as metaDataProperty elements which are optionally allowed in all CRS objects.&lt;/documentation&gt;
03091:             *              &lt;/annotation&gt;
03092:             *          &lt;/element&gt;
03093:             *          &lt;element minOccurs="0" ref="gml:version"/&gt;
03094:             *          &lt;element minOccurs="0" ref="gml:remarks"&gt;
03095:             *              &lt;annotation&gt;
03096:             *                  &lt;documentation&gt;Remarks about this code or alias.&lt;/documentation&gt;
03097:             *              &lt;/annotation&gt;
03098:             *          &lt;/element&gt;
03099:             *      &lt;/sequence&gt;
03100:             *  &lt;/complexType&gt;
03101:             *
03102:             *    </code>
03103:             *   </pre>
03104:             * </p>
03105:             *
03106:             * @generated
03107:             */
03108:            public static final AttributeType IDENTIFIERTYPE_TYPE = AttributeTypeFactory
03109:                    .newAttributeType("IdentifierType", java.lang.Object.class);
03110:
03111:            /**
03112:             * <p>
03113:             *  <pre>
03114:             *   <code>
03115:             *  &lt;complexType name="CompoundCRSType"&gt;
03116:             *      &lt;annotation&gt;
03117:             *          &lt;documentation&gt;A coordinate reference system describing the position of points through two or more independent coordinate reference systems. &lt;/documentation&gt;
03118:             *      &lt;/annotation&gt;
03119:             *      &lt;complexContent&gt;
03120:             *          &lt;extension base="gml:AbstractReferenceSystemType"&gt;
03121:             *              &lt;sequence&gt;
03122:             *                  &lt;element maxOccurs="unbounded" minOccurs="2" ref="gml:includesCRS"&gt;
03123:             *                      &lt;annotation&gt;
03124:             *                          &lt;documentation&gt;Ordered sequence of associations to all the component coordinate reference systems included in this compound coordinate reference system. &lt;/documentation&gt;
03125:             *                      &lt;/annotation&gt;
03126:             *                  &lt;/element&gt;
03127:             *              &lt;/sequence&gt;
03128:             *          &lt;/extension&gt;
03129:             *      &lt;/complexContent&gt;
03130:             *  &lt;/complexType&gt;
03131:             *
03132:             *    </code>
03133:             *   </pre>
03134:             * </p>
03135:             *
03136:             * @generated
03137:             */
03138:            public static final AttributeType COMPOUNDCRSTYPE_TYPE = AttributeTypeFactory
03139:                    .newAttributeType("CompoundCRSType", java.lang.Object.class);
03140:
03141:            /**
03142:             * <p>
03143:             *  <pre>
03144:             *   <code>
03145:             *  &lt;simpleType name="IncrementOrder"&gt;
03146:             *      &lt;annotation&gt;
03147:             *          &lt;documentation&gt;The enumeration value here indicates the incrementation order  to be used on the first 2 axes, i.e. "+x-y" means that the points on the first axis are to be traversed from lowest to highest and  the points on the second axis are to be traversed from highest to lowest. The points on all other axes (if any) beyond the first 2 are assumed to increment from lowest to highest.&lt;/documentation&gt;
03148:             *      &lt;/annotation&gt;
03149:             *      &lt;restriction base="string"&gt;
03150:             *          &lt;enumeration value="+x+y"/&gt;
03151:             *          &lt;enumeration value="+y+x"/&gt;
03152:             *          &lt;enumeration value="+x-y"/&gt;
03153:             *          &lt;enumeration value="-x-y"/&gt;
03154:             *      &lt;/restriction&gt;
03155:             *  &lt;/simpleType&gt;
03156:             *
03157:             *    </code>
03158:             *   </pre>
03159:             * </p>
03160:             *
03161:             * @generated
03162:             */
03163:            public static final AttributeType INCREMENTORDER_TYPE = AttributeTypeFactory
03164:                    .newAttributeType("IncrementOrder", java.lang.Object.class);
03165:
03166:            /**
03167:             * <p>
03168:             *  <pre>
03169:             *   <code>
03170:             *  &lt;complexType name="TopologyStylePropertyType"&gt;
03171:             *      &lt;annotation&gt;
03172:             *          &lt;documentation/&gt;
03173:             *      &lt;/annotation&gt;
03174:             *      &lt;sequence&gt;
03175:             *          &lt;element minOccurs="0" ref="gml:TopologyStyle"/&gt;
03176:             *      &lt;/sequence&gt;
03177:             *      &lt;attribute name="about" type="anyURI" use="optional"/&gt;
03178:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
03179:             *  &lt;/complexType&gt;
03180:             *
03181:             *    </code>
03182:             *   </pre>
03183:             * </p>
03184:             *
03185:             * @generated
03186:             */
03187:            public static final AttributeType TOPOLOGYSTYLEPROPERTYTYPE_TYPE = AttributeTypeFactory
03188:                    .newAttributeType("TopologyStylePropertyType",
03189:                            java.lang.Object.class);
03190:
03191:            /**
03192:             * <p>
03193:             *  <pre>
03194:             *   <code>
03195:             *  &lt;complexType name="ReferenceSystemRefType"&gt;
03196:             *      &lt;annotation&gt;
03197:             *          &lt;documentation&gt;Association to a reference system, either referencing or containing the definition of that reference system.&lt;/documentation&gt;
03198:             *      &lt;/annotation&gt;
03199:             *      &lt;sequence minOccurs="0"&gt;
03200:             *          &lt;element ref="gml:_ReferenceSystem"/&gt;
03201:             *      &lt;/sequence&gt;
03202:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
03203:             *  &lt;/complexType&gt;
03204:             *
03205:             *    </code>
03206:             *   </pre>
03207:             * </p>
03208:             *
03209:             * @generated
03210:             */
03211:            public static final AttributeType REFERENCESYSTEMREFTYPE_TYPE = AttributeTypeFactory
03212:                    .newAttributeType("ReferenceSystemRefType",
03213:                            java.lang.Object.class);
03214:
03215:            /**
03216:             * <p>
03217:             *  <pre>
03218:             *   <code>
03219:             *  &lt;complexType name="DirectedTopoSolidPropertyType"&gt;
03220:             *      &lt;sequence minOccurs="0"&gt;
03221:             *          &lt;element ref="gml:TopoSolid"/&gt;
03222:             *      &lt;/sequence&gt;
03223:             *      &lt;attribute default="+" name="orientation" type="gml:SignType"/&gt;
03224:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
03225:             *  &lt;/complexType&gt;
03226:             *
03227:             *    </code>
03228:             *   </pre>
03229:             * </p>
03230:             *
03231:             * @generated
03232:             */
03233:            public static final AttributeType DIRECTEDTOPOSOLIDPROPERTYTYPE_TYPE = AttributeTypeFactory
03234:                    .newAttributeType("DirectedTopoSolidPropertyType",
03235:                            java.lang.Object.class);
03236:
03237:            /**
03238:             * <p>
03239:             *  <pre>
03240:             *   <code>
03241:             *  &lt;complexType abstract="true" name="AbstractDatumBaseType"&gt;
03242:             *      &lt;annotation&gt;
03243:             *          &lt;documentation&gt;Basic encoding for datum objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
03244:             *      &lt;/annotation&gt;
03245:             *      &lt;complexContent&gt;
03246:             *          &lt;restriction base="gml:DefinitionType"&gt;
03247:             *              &lt;sequence&gt;
03248:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
03249:             *                  &lt;element ref="gml:datumName"/&gt;
03250:             *              &lt;/sequence&gt;
03251:             *              &lt;attribute ref="gml:id" use="required"/&gt;
03252:             *          &lt;/restriction&gt;
03253:             *      &lt;/complexContent&gt;
03254:             *  &lt;/complexType&gt;
03255:             *
03256:             *    </code>
03257:             *   </pre>
03258:             * </p>
03259:             *
03260:             * @generated
03261:             */
03262:            public static final AttributeType ABSTRACTDATUMBASETYPE_TYPE = AttributeTypeFactory
03263:                    .newAttributeType("AbstractDatumBaseType",
03264:                            java.lang.Object.class);
03265:
03266:            /**
03267:             * <p>
03268:             *  <pre>
03269:             *   <code>
03270:             *  &lt;complexType name="VerticalCSType"&gt;
03271:             *      &lt;annotation&gt;
03272:             *          &lt;documentation&gt;A one-dimensional coordinate system used to record the heights (or depths) of points. Such a coordinate system is usually dependent on the Earth's gravity field, perhaps loosely as when atmospheric pressure is the basis for the vertical coordinate system axis. A VerticalCS shall have one usesAxis association. &lt;/documentation&gt;
03273:             *      &lt;/annotation&gt;
03274:             *      &lt;complexContent&gt;
03275:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
03276:             *      &lt;/complexContent&gt;
03277:             *  &lt;/complexType&gt;
03278:             *
03279:             *    </code>
03280:             *   </pre>
03281:             * </p>
03282:             *
03283:             * @generated
03284:             */
03285:            public static final AttributeType VERTICALCSTYPE_TYPE = AttributeTypeFactory
03286:                    .newAttributeType("VerticalCSType", java.lang.Object.class);
03287:
03288:            /**
03289:             * <p>
03290:             *  <pre>
03291:             *   <code>
03292:             *  &lt;complexType name="DatumRefType"&gt;
03293:             *      &lt;annotation&gt;
03294:             *          &lt;documentation&gt;Association to a datum, either referencing or containing the definition of that datum. &lt;/documentation&gt;
03295:             *      &lt;/annotation&gt;
03296:             *      &lt;sequence minOccurs="0"&gt;
03297:             *          &lt;element ref="gml:_Datum"/&gt;
03298:             *      &lt;/sequence&gt;
03299:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
03300:             *  &lt;/complexType&gt;
03301:             *
03302:             *    </code>
03303:             *   </pre>
03304:             * </p>
03305:             *
03306:             * @generated
03307:             */
03308:            public static final AttributeType DATUMREFTYPE_TYPE = AttributeTypeFactory
03309:                    .newAttributeType("DatumRefType", java.lang.Object.class);
03310:
03311:            /**
03312:             * <p>
03313:             *  <pre>
03314:             *   <code>
03315:             *  &lt;complexType abstract="true" mixed="true" name="AbstractMetaDataType"&gt;
03316:             *      &lt;annotation&gt;
03317:             *          &lt;documentation&gt;An abstract base type for complex metadata types.&lt;/documentation&gt;
03318:             *      &lt;/annotation&gt;
03319:             *      &lt;attribute ref="gml:id" use="optional"/&gt;
03320:             *  &lt;/complexType&gt;
03321:             *
03322:             *    </code>
03323:             *   </pre>
03324:             * </p>
03325:             *
03326:             * @generated
03327:             */
03328:            public static final AttributeType ABSTRACTMETADATATYPE_TYPE = AttributeTypeFactory
03329:                    .newAttributeType("AbstractMetaDataType",
03330:                            java.lang.Object.class);
03331:
03332:            /**
03333:             * <p>
03334:             *  <pre>
03335:             *   <code>
03336:             *  &lt;complexType name="AreaType"&gt;
03337:             *      &lt;annotation&gt;
03338:             *          &lt;documentation&gt;Value of a spatial area quantity, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for an area, such as square metres or square miles.&lt;/documentation&gt;
03339:             *      &lt;/annotation&gt;
03340:             *      &lt;simpleContent&gt;
03341:             *          &lt;restriction base="gml:MeasureType"/&gt;
03342:             *      &lt;/simpleContent&gt;
03343:             *  &lt;/complexType&gt;
03344:             *
03345:             *    </code>
03346:             *   </pre>
03347:             * </p>
03348:             *
03349:             * @generated
03350:             */
03351:            public static final AttributeType AREATYPE_TYPE = AttributeTypeFactory
03352:                    .newAttributeType("AreaType", java.lang.Object.class);
03353:
03354:            /**
03355:             * <p>
03356:             *  <pre>
03357:             *   <code>
03358:             *  &lt;complexType name="MultiPointCoverageType"&gt;
03359:             *      &lt;annotation&gt;
03360:             *          &lt;documentation&gt;A discrete coverage type whose domain is defined by a collection of point&lt;/documentation&gt;
03361:             *      &lt;/annotation&gt;
03362:             *      &lt;complexContent&gt;
03363:             *          &lt;restriction base="gml:AbstractDiscreteCoverageType"&gt;
03364:             *              &lt;sequence&gt;
03365:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
03366:             *                  &lt;element minOccurs="0" ref="gml:boundedBy"/&gt;
03367:             *                  &lt;element ref="gml:multiPointDomain"/&gt;
03368:             *                  &lt;element ref="gml:rangeSet"/&gt;
03369:             *                  &lt;element minOccurs="0" ref="gml:coverageFunction"/&gt;
03370:             *              &lt;/sequence&gt;
03371:             *          &lt;/restriction&gt;
03372:             *      &lt;/complexContent&gt;
03373:             *  &lt;/complexType&gt;
03374:             *
03375:             *    </code>
03376:             *   </pre>
03377:             * </p>
03378:             *
03379:             * @generated
03380:             */
03381:            public static final AttributeType MULTIPOINTCOVERAGETYPE_TYPE = AttributeTypeFactory
03382:                    .newAttributeType("MultiPointCoverageType",
03383:                            java.lang.Object.class);
03384:
03385:            /**
03386:             * <p>
03387:             *  <pre>
03388:             *   <code>
03389:             *  &lt;complexType name="MeasureListType"&gt;
03390:             *      &lt;annotation&gt;
03391:             *          &lt;documentation&gt;List of numbers with a uniform scale.
03392:             *        The value of uom (Units Of Measure) attribute is a reference to
03393:             *        a Reference System for the amount, either a ratio or position scale. &lt;/documentation&gt;
03394:             *      &lt;/annotation&gt;
03395:             *      &lt;simpleContent&gt;
03396:             *          &lt;extension base="gml:doubleList"&gt;
03397:             *              &lt;attribute name="uom" type="anyURI" use="required"/&gt;
03398:             *          &lt;/extension&gt;
03399:             *      &lt;/simpleContent&gt;
03400:             *  &lt;/complexType&gt;
03401:             *
03402:             *    </code>
03403:             *   </pre>
03404:             * </p>
03405:             *
03406:             * @generated
03407:             */
03408:            public static final AttributeType MEASURELISTTYPE_TYPE = AttributeTypeFactory
03409:                    .newAttributeType("MeasureListType", java.lang.Object.class);
03410:
03411:            /**
03412:             * <p>
03413:             *  <pre>
03414:             *   <code>
03415:             *  &lt;complexType abstract="true" name="AbstractCoordinateOperationType"&gt;
03416:             *      &lt;annotation&gt;
03417:             *          &lt;documentation&gt;A mathematical operation on coordinates that transforms or converts coordinates to another coordinate reference system. Many but not all coordinate operations (from CRS A to CRS B) also uniquely define the inverse operation (from CRS B to CRS A). In some cases, the operation method algorithm for the inverse operation is the same as for the forward algorithm, but the signs of some operation parameter values must be reversed. In other cases, different algorithms are required for the forward and inverse operations, but the same operation parameter values are used. If (some) entirely different parameter values are needed, a different coordinate operation shall be defined.&lt;/documentation&gt;
03418:             *      &lt;/annotation&gt;
03419:             *      &lt;complexContent&gt;
03420:             *          &lt;extension base="gml:AbstractCoordinateOperationBaseType"&gt;
03421:             *              &lt;sequence&gt;
03422:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:coordinateOperationID"&gt;
03423:             *                      &lt;annotation&gt;
03424:             *                          &lt;documentation&gt;Set of alternative identifications of this coordinate operation. The first coordinateOperationID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
03425:             *                      &lt;/annotation&gt;
03426:             *                  &lt;/element&gt;
03427:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
03428:             *                      &lt;annotation&gt;
03429:             *                          &lt;documentation&gt;Comments on or information about this coordinate operation, including source information. &lt;/documentation&gt;
03430:             *                      &lt;/annotation&gt;
03431:             *                  &lt;/element&gt;
03432:             *                  &lt;element minOccurs="0" ref="gml:operationVersion"/&gt;
03433:             *                  &lt;element minOccurs="0" ref="gml:validArea"/&gt;
03434:             *                  &lt;element minOccurs="0" ref="gml:scope"/&gt;
03435:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_positionalAccuracy"&gt;
03436:             *                      &lt;annotation&gt;
03437:             *                          &lt;documentation&gt;Unordered set of estimates of the impact of this coordinate operation on point position accuracy. Gives position error estimates for target coordinates of this coordinate operation, assuming no errors in source coordinates. &lt;/documentation&gt;
03438:             *                      &lt;/annotation&gt;
03439:             *                  &lt;/element&gt;
03440:             *                  &lt;element minOccurs="0" ref="gml:sourceCRS"/&gt;
03441:             *                  &lt;element minOccurs="0" ref="gml:targetCRS"/&gt;
03442:             *              &lt;/sequence&gt;
03443:             *          &lt;/extension&gt;
03444:             *      &lt;/complexContent&gt;
03445:             *  &lt;/complexType&gt;
03446:             *
03447:             *    </code>
03448:             *   </pre>
03449:             * </p>
03450:             *
03451:             * @generated
03452:             */
03453:            public static final AttributeType ABSTRACTCOORDINATEOPERATIONTYPE_TYPE = AttributeTypeFactory
03454:                    .newAttributeType("AbstractCoordinateOperationType",
03455:                            java.lang.Object.class);
03456:
03457:            /**
03458:             * <p>
03459:             *  <pre>
03460:             *   <code>
03461:             *  &lt;simpleType name="KnotTypesType"&gt;
03462:             *      &lt;annotation&gt;
03463:             *          &lt;documentation&gt;Defines allowed values for the knots` type. Uniform knots implies that all knots are of multiplicity 1 and they differ by a positive constant from the preceding knot. Knots are quasi-uniform iff they are of multiplicity (degree + 1) at the ends, of multiplicity 1 elsewhere, and they differ by a positive constant from the preceding knot.&lt;/documentation&gt;
03464:             *      &lt;/annotation&gt;
03465:             *      &lt;restriction base="string"&gt;
03466:             *          &lt;enumeration value="uniform"/&gt;
03467:             *          &lt;enumeration value="quasiUniform"/&gt;
03468:             *          &lt;enumeration value="piecewiseBezier"/&gt;
03469:             *      &lt;/restriction&gt;
03470:             *  &lt;/simpleType&gt;
03471:             *
03472:             *    </code>
03473:             *   </pre>
03474:             * </p>
03475:             *
03476:             * @generated
03477:             */
03478:            public static final AttributeType KNOTTYPESTYPE_TYPE = AttributeTypeFactory
03479:                    .newAttributeType("KnotTypesType", java.lang.Object.class);
03480:
03481:            /**
03482:             * <p>
03483:             *  <pre>
03484:             *   <code>
03485:             *  &lt;complexType name="TimeCalendarEraType"&gt;
03486:             *      &lt;annotation&gt;
03487:             *          &lt;documentation xml:lang="en"&gt;In every calendar, years are numbered relative to the date of a
03488:             *        reference event that defines a calendar era.
03489:             *        In this implementation, we omit the back-pointer "datingSystem".&lt;/documentation&gt;
03490:             *      &lt;/annotation&gt;
03491:             *      &lt;complexContent&gt;
03492:             *          &lt;extension base="gml:DefinitionType"&gt;
03493:             *              &lt;sequence&gt;
03494:             *                  &lt;element name="referenceEvent" type="gml:StringOrRefType"&gt;
03495:             *                      &lt;annotation&gt;
03496:             *                          &lt;documentation&gt;Name or description of a mythical or historic event which fixes the position of the base scale of the calendar era.&lt;/documentation&gt;
03497:             *                      &lt;/annotation&gt;
03498:             *                  &lt;/element&gt;
03499:             *                  &lt;element default="0001-01-01" minOccurs="0"
03500:             *                      name="referenceDate" type="date"&gt;
03501:             *                      &lt;annotation&gt;
03502:             *                          &lt;documentation&gt;Date of the referenceEvent expressed as a date in the given calendar.
03503:             *                In most calendars, this date is the origin (i.e., the first day) of the scale, but this is not always true.&lt;/documentation&gt;
03504:             *                      &lt;/annotation&gt;
03505:             *                  &lt;/element&gt;
03506:             *                  &lt;element name="julianReference" type="decimal"&gt;
03507:             *                      &lt;annotation&gt;
03508:             *                          &lt;documentation&gt;Julian date that corresponds to the reference date.
03509:             *                The Julian day numbering system is a temporal coordinate system that has an
03510:             *                origin earlier than any known calendar,
03511:             *                at noon on 1 January 4713 BC in the Julian proleptic calendar.
03512:             *                The Julian day number is an integer value;
03513:             *                the Julian date is a decimal value that allows greater resolution.
03514:             *                Transforming calendar dates to and from Julian dates provides a
03515:             *                relatively simple basis for transforming dates from one calendar to another.&lt;/documentation&gt;
03516:             *                      &lt;/annotation&gt;
03517:             *                  &lt;/element&gt;
03518:             *                  &lt;element name="epochOfUse" type="gml:TimePeriodPropertyType"&gt;
03519:             *                      &lt;annotation&gt;
03520:             *                          &lt;documentation&gt;Period for which the calendar era was used as a basis for dating.&lt;/documentation&gt;
03521:             *                      &lt;/annotation&gt;
03522:             *                  &lt;/element&gt;
03523:             *              &lt;/sequence&gt;
03524:             *          &lt;/extension&gt;
03525:             *      &lt;/complexContent&gt;
03526:             *  &lt;/complexType&gt;
03527:             *
03528:             *    </code>
03529:             *   </pre>
03530:             * </p>
03531:             *
03532:             * @generated
03533:             */
03534:            public static final AttributeType TIMECALENDARERATYPE_TYPE = AttributeTypeFactory
03535:                    .newAttributeType("TimeCalendarEraType",
03536:                            java.lang.Object.class);
03537:
03538:            /**
03539:             * <p>
03540:             *  <pre>
03541:             *   <code>
03542:             *  &lt;complexType name="AngleChoiceType"&gt;
03543:             *      &lt;annotation&gt;
03544:             *          &lt;documentation&gt;Value of an angle quantity provided in either degree-minute-second format or single value format.&lt;/documentation&gt;
03545:             *      &lt;/annotation&gt;
03546:             *      &lt;choice&gt;
03547:             *          &lt;element ref="gml:angle"/&gt;
03548:             *          &lt;element ref="gml:dmsAngle"/&gt;
03549:             *      &lt;/choice&gt;
03550:             *  &lt;/complexType&gt;
03551:             *
03552:             *    </code>
03553:             *   </pre>
03554:             * </p>
03555:             *
03556:             * @generated
03557:             */
03558:            public static final AttributeType ANGLECHOICETYPE_TYPE = AttributeTypeFactory
03559:                    .newAttributeType("AngleChoiceType", java.lang.Object.class);
03560:
03561:            /**
03562:             * <p>
03563:             *  <pre>
03564:             *   <code>
03565:             *  &lt;complexType name="DefinitionType"&gt;
03566:             *      &lt;annotation&gt;
03567:             *          &lt;documentation&gt;A definition, which can be included in or referenced by a dictionary. In this extended type, the inherited "description" optional element can hold the definition whenever only text is needed. The inherited "name" elements can provide one or more brief terms for which this is the definition. The inherited "metaDataProperty" elements can be used to reference or include more information about this definition.
03568:             *  The gml:id attribute is required - it must be possible to reference this definition using this handle.  &lt;/documentation&gt;
03569:             *      &lt;/annotation&gt;
03570:             *      &lt;complexContent&gt;
03571:             *          &lt;restriction base="gml:AbstractGMLType"&gt;
03572:             *              &lt;sequence&gt;
03573:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
03574:             *                  &lt;element minOccurs="0" ref="gml:description"/&gt;
03575:             *                  &lt;element maxOccurs="unbounded" ref="gml:name"/&gt;
03576:             *              &lt;/sequence&gt;
03577:             *              &lt;attribute ref="gml:id" use="required"/&gt;
03578:             *          &lt;/restriction&gt;
03579:             *      &lt;/complexContent&gt;
03580:             *  &lt;/complexType&gt;
03581:             *
03582:             *    </code>
03583:             *   </pre>
03584:             * </p>
03585:             *
03586:             * @generated
03587:             */
03588:            public static final AttributeType DEFINITIONTYPE_TYPE = AttributeTypeFactory
03589:                    .newAttributeType("DefinitionType", java.lang.Object.class);
03590:
03591:            /**
03592:             * <p>
03593:             *  <pre>
03594:             *   <code>
03595:             *  &lt;complexType name="BaseStyleDescriptorType"&gt;
03596:             *      &lt;annotation&gt;
03597:             *          &lt;documentation&gt;Base complex type for geometry, topology, label and graph styles.&lt;/documentation&gt;
03598:             *      &lt;/annotation&gt;
03599:             *      &lt;complexContent&gt;
03600:             *          &lt;extension base="gml:AbstractGMLType"&gt;
03601:             *              &lt;sequence&gt;
03602:             *                  &lt;element minOccurs="0" name="spatialResolution" type="gml:ScaleType"/&gt;
03603:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
03604:             *                      name="styleVariation" type="gml:StyleVariationType"/&gt;
03605:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="smil20:animate"/&gt;
03606:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="smil20:animateMotion"/&gt;
03607:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="smil20:animateColor"/&gt;
03608:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="smil20:set"/&gt;
03609:             *              &lt;/sequence&gt;
03610:             *          &lt;/extension&gt;
03611:             *      &lt;/complexContent&gt;
03612:             *  &lt;/complexType&gt;
03613:             *
03614:             *    </code>
03615:             *   </pre>
03616:             * </p>
03617:             *
03618:             * @generated
03619:             */
03620:            public static final AttributeType BASESTYLEDESCRIPTORTYPE_TYPE = AttributeTypeFactory
03621:                    .newAttributeType("BaseStyleDescriptorType",
03622:                            java.lang.Object.class);
03623:
03624:            /**
03625:             * <p>
03626:             *  <pre>
03627:             *   <code>
03628:             *  &lt;complexType abstract="true" name="TemporalDatumBaseType"&gt;
03629:             *      &lt;annotation&gt;
03630:             *          &lt;documentation&gt;Partially defines the origin of a temporal coordinate reference system. This type restricts the AbstractDatumType to remove the "anchorPoint" and "realizationEpoch" elements. &lt;/documentation&gt;
03631:             *      &lt;/annotation&gt;
03632:             *      &lt;complexContent&gt;
03633:             *          &lt;restriction base="gml:AbstractDatumType"&gt;
03634:             *              &lt;sequence&gt;
03635:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
03636:             *                  &lt;element ref="gml:datumName"/&gt;
03637:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:datumID"/&gt;
03638:             *                  &lt;element minOccurs="0" ref="gml:validArea"/&gt;
03639:             *                  &lt;element minOccurs="0" ref="gml:scope"/&gt;
03640:             *              &lt;/sequence&gt;
03641:             *              &lt;attribute ref="gml:id" use="required"/&gt;
03642:             *          &lt;/restriction&gt;
03643:             *      &lt;/complexContent&gt;
03644:             *  &lt;/complexType&gt;
03645:             *
03646:             *    </code>
03647:             *   </pre>
03648:             * </p>
03649:             *
03650:             * @generated
03651:             */
03652:            public static final AttributeType TEMPORALDATUMBASETYPE_TYPE = AttributeTypeFactory
03653:                    .newAttributeType("TemporalDatumBaseType",
03654:                            java.lang.Object.class);
03655:
03656:            /**
03657:             * <p>
03658:             *  <pre>
03659:             *   <code>
03660:             *  &lt;simpleType name="NullType"&gt;
03661:             *      &lt;annotation&gt;
03662:             *          &lt;documentation&gt;Utility type for null elements.  The value may be selected from one of the enumerated tokens, or may be a URI in which case this should identify a resource which describes the reason for the null. &lt;/documentation&gt;
03663:             *      &lt;/annotation&gt;
03664:             *      &lt;union memberTypes="gml:NullEnumeration anyURI"/&gt;
03665:             *  &lt;/simpleType&gt;
03666:             *
03667:             *    </code>
03668:             *   </pre>
03669:             * </p>
03670:             *
03671:             * @generated
03672:             */
03673:            public static final AttributeType NULLTYPE_TYPE = AttributeTypeFactory
03674:                    .newAttributeType("NullType", java.lang.Object.class);
03675:
03676:            /**
03677:             * <p>
03678:             *  <pre>
03679:             *   <code>
03680:             *  &lt;simpleType name="AesheticCriteriaType"&gt;
03681:             *      &lt;annotation&gt;
03682:             *          &lt;documentation&gt;Graph-specific styling property.&lt;/documentation&gt;
03683:             *      &lt;/annotation&gt;
03684:             *      &lt;restriction base="string"&gt;
03685:             *          &lt;enumeration value="MIN_CROSSINGS"/&gt;
03686:             *          &lt;enumeration value="MIN_AREA"/&gt;
03687:             *          &lt;enumeration value="MIN_BENDS"/&gt;
03688:             *          &lt;enumeration value="MAX_BENDS"/&gt;
03689:             *          &lt;enumeration value="UNIFORM_BENDS"/&gt;
03690:             *          &lt;enumeration value="MIN_SLOPES"/&gt;
03691:             *          &lt;enumeration value="MIN_EDGE_LENGTH"/&gt;
03692:             *          &lt;enumeration value="MAX_EDGE_LENGTH"/&gt;
03693:             *          &lt;enumeration value="UNIFORM_EDGE_LENGTH"/&gt;
03694:             *          &lt;enumeration value="MAX_ANGULAR_RESOLUTION"/&gt;
03695:             *          &lt;enumeration value="MIN_ASPECT_RATIO"/&gt;
03696:             *          &lt;enumeration value="MAX_SYMMETRIES"/&gt;
03697:             *      &lt;/restriction&gt;
03698:             *  &lt;/simpleType&gt;
03699:             *
03700:             *    </code>
03701:             *   </pre>
03702:             * </p>
03703:             *
03704:             * @generated
03705:             */
03706:            public static final AttributeType AESHETICCRITERIATYPE_TYPE = AttributeTypeFactory
03707:                    .newAttributeType("AesheticCriteriaType",
03708:                            java.lang.Object.class);
03709:
03710:            /**
03711:             * <p>
03712:             *  <pre>
03713:             *   <code>
03714:             *  &lt;complexType name="MultiCurveType"&gt;
03715:             *      &lt;annotation&gt;
03716:             *          &lt;documentation&gt;A MultiCurve is defined by one or more Curves, referenced through curveMember elements.&lt;/documentation&gt;
03717:             *      &lt;/annotation&gt;
03718:             *      &lt;complexContent&gt;
03719:             *          &lt;extension base="gml:AbstractGeometricAggregateType"&gt;
03720:             *              &lt;sequence&gt;
03721:             *                  &lt;annotation&gt;
03722:             *                      &lt;documentation&gt;The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection.
03723:             *  NOTE: Array properties cannot reference remote geometry elements.&lt;/documentation&gt;
03724:             *                  &lt;/annotation&gt;
03725:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:curveMember"/&gt;
03726:             *                  &lt;element minOccurs="0" ref="gml:curveMembers"/&gt;
03727:             *              &lt;/sequence&gt;
03728:             *          &lt;/extension&gt;
03729:             *      &lt;/complexContent&gt;
03730:             *  &lt;/complexType&gt;
03731:             *
03732:             *    </code>
03733:             *   </pre>
03734:             * </p>
03735:             *
03736:             * @generated
03737:             */
03738:            public static final AttributeType MULTICURVETYPE_TYPE = AttributeTypeFactory
03739:                    .newAttributeType("MultiCurveType", MultiLineString.class);
03740:
03741:            /**
03742:             * <p>
03743:             *  <pre>
03744:             *   <code>
03745:             *  &lt;complexType name="StyleType"&gt;
03746:             *      &lt;annotation&gt;
03747:             *          &lt;documentation&gt;[complexType of] Predefined concrete value of the top-level property. Encapsulates all other styling information.&lt;/documentation&gt;
03748:             *      &lt;/annotation&gt;
03749:             *      &lt;complexContent&gt;
03750:             *          &lt;extension base="gml:AbstractStyleType"&gt;
03751:             *              &lt;sequence&gt;
03752:             *                  &lt;element maxOccurs="unbounded" ref="gml:featureStyle"/&gt;
03753:             *                  &lt;element minOccurs="0" ref="gml:graphStyle"/&gt;
03754:             *              &lt;/sequence&gt;
03755:             *          &lt;/extension&gt;
03756:             *      &lt;/complexContent&gt;
03757:             *  &lt;/complexType&gt;
03758:             *
03759:             *    </code>
03760:             *   </pre>
03761:             * </p>
03762:             *
03763:             * @generated
03764:             */
03765:            public static final AttributeType STYLETYPE_TYPE = AttributeTypeFactory
03766:                    .newAttributeType("StyleType", java.lang.Object.class);
03767:
03768:            /**
03769:             * <p>
03770:             *  <pre>
03771:             *   <code>
03772:             *  &lt;complexType name="DerivationUnitTermType"&gt;
03773:             *      &lt;annotation&gt;
03774:             *          &lt;documentation&gt;Definition of one unit term for a derived unit of measure. This unit term references another unit of measure (uom) and provides an integer exponent applied to that unit in defining the compound unit. The exponent can be positive or negative, but not zero.&lt;/documentation&gt;
03775:             *      &lt;/annotation&gt;
03776:             *      &lt;complexContent&gt;
03777:             *          &lt;extension base="gml:UnitOfMeasureType"&gt;
03778:             *              &lt;attribute name="exponent" type="integer"/&gt;
03779:             *          &lt;/extension&gt;
03780:             *      &lt;/complexContent&gt;
03781:             *  &lt;/complexType&gt;
03782:             *
03783:             *    </code>
03784:             *   </pre>
03785:             * </p>
03786:             *
03787:             * @generated
03788:             */
03789:            public static final AttributeType DERIVATIONUNITTERMTYPE_TYPE = AttributeTypeFactory
03790:                    .newAttributeType("DerivationUnitTermType",
03791:                            java.lang.Object.class);
03792:
03793:            /**
03794:             * <p>
03795:             *  <pre>
03796:             *   <code>
03797:             *  &lt;complexType name="TimeOrdinalEraPropertyType"&gt;
03798:             *      &lt;sequence minOccurs="0"&gt;
03799:             *          &lt;element ref="gml:TimeOrdinalEra"/&gt;
03800:             *      &lt;/sequence&gt;
03801:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
03802:             *  &lt;/complexType&gt;
03803:             *
03804:             *    </code>
03805:             *   </pre>
03806:             * </p>
03807:             *
03808:             * @generated
03809:             */
03810:            public static final AttributeType TIMEORDINALERAPROPERTYTYPE_TYPE = AttributeTypeFactory
03811:                    .newAttributeType("TimeOrdinalEraPropertyType",
03812:                            java.lang.Object.class);
03813:
03814:            /**
03815:             * <p>
03816:             *  <pre>
03817:             *   <code>
03818:             *  &lt;complexType name="TopoVolumeType"&gt;
03819:             *      &lt;annotation&gt;
03820:             *          &lt;documentation&gt;The TopoVolume type and element represent a homogeneous topological expression, a set of directed TopoSolids, which if realised are isomorphic to a geometric solid primitive. The intended use of TopoVolume is to appear within a 3D solid feature instance to express the structural and geometric relationships of this solid to other features via the shared TopoSolid definitions.  . Note the orientation assigned to the directedSolid has no meaning in three dimensions. It is preserved for symmetry with the preceding types and elements.&lt;/documentation&gt;
03821:             *      &lt;/annotation&gt;
03822:             *      &lt;complexContent&gt;
03823:             *          &lt;extension base="gml:AbstractTopologyType"&gt;
03824:             *              &lt;sequence&gt;
03825:             *                  &lt;element maxOccurs="unbounded" ref="gml:directedTopoSolid"/&gt;
03826:             *              &lt;/sequence&gt;
03827:             *          &lt;/extension&gt;
03828:             *      &lt;/complexContent&gt;
03829:             *  &lt;/complexType&gt;
03830:             *
03831:             *    </code>
03832:             *   </pre>
03833:             * </p>
03834:             *
03835:             * @generated
03836:             */
03837:            public static final AttributeType TOPOVOLUMETYPE_TYPE = AttributeTypeFactory
03838:                    .newAttributeType("TopoVolumeType", java.lang.Object.class);
03839:
03840:            /**
03841:             * <p>
03842:             *  <pre>
03843:             *   <code>
03844:             *  &lt;complexType abstract="true" name="AbstractPositionalAccuracyType"&gt;
03845:             *      &lt;annotation&gt;
03846:             *          &lt;documentation&gt;Position error estimate (or accuracy) data. &lt;/documentation&gt;
03847:             *      &lt;/annotation&gt;
03848:             *      &lt;sequence&gt;
03849:             *          &lt;element minOccurs="0" ref="gml:measureDescription"/&gt;
03850:             *      &lt;/sequence&gt;
03851:             *  &lt;/complexType&gt;
03852:             *
03853:             *    </code>
03854:             *   </pre>
03855:             * </p>
03856:             *
03857:             * @generated
03858:             */
03859:            public static final AttributeType ABSTRACTPOSITIONALACCURACYTYPE_TYPE = AttributeTypeFactory
03860:                    .newAttributeType("AbstractPositionalAccuracyType",
03861:                            java.lang.Object.class);
03862:
03863:            /**
03864:             * <p>
03865:             *  <pre>
03866:             *   <code>
03867:             *  &lt;complexType name="TriangleType"&gt;
03868:             *      &lt;annotation&gt;
03869:             *          &lt;documentation&gt;Represents a triangle as a surface with an outer boundary consisting of a linear ring. Note that this is a polygon (subtype) with no inner boundaries. The number of points in the linear ring must be four.&lt;/documentation&gt;
03870:             *      &lt;/annotation&gt;
03871:             *      &lt;complexContent&gt;
03872:             *          &lt;extension base="gml:AbstractSurfacePatchType"&gt;
03873:             *              &lt;sequence&gt;
03874:             *                  &lt;element ref="gml:exterior"&gt;
03875:             *                      &lt;annotation&gt;
03876:             *                          &lt;documentation&gt;Constraint: The Ring shall be a LinearRing and must form a triangle, the first and the last position must be co-incident.&lt;/documentation&gt;
03877:             *                      &lt;/annotation&gt;
03878:             *                  &lt;/element&gt;
03879:             *              &lt;/sequence&gt;
03880:             *              &lt;attribute fixed="planar" name="interpolation" type="gml:SurfaceInterpolationType"&gt;
03881:             *                  &lt;annotation&gt;
03882:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the interpolation mechanism used for this surface patch. Currently only planar surface patches are defined in GML 3, the attribute is fixed to "planar", i.e. the interpolation method shall return points on a single plane. The boundary of the patch shall be contained within that plane.&lt;/documentation&gt;
03883:             *                  &lt;/annotation&gt;
03884:             *              &lt;/attribute&gt;
03885:             *          &lt;/extension&gt;
03886:             *      &lt;/complexContent&gt;
03887:             *  &lt;/complexType&gt;
03888:             *
03889:             *    </code>
03890:             *   </pre>
03891:             * </p>
03892:             *
03893:             * @generated
03894:             */
03895:            public static final AttributeType TRIANGLETYPE_TYPE = AttributeTypeFactory
03896:                    .newAttributeType("TriangleType", java.lang.Object.class);
03897:
03898:            /**
03899:             * <p>
03900:             *  <pre>
03901:             *   <code>
03902:             *  &lt;complexType name="TemporalDatumRefType"&gt;
03903:             *      &lt;annotation&gt;
03904:             *          &lt;documentation&gt;Association to a temporal datum, either referencing or containing the definition of that datum. &lt;/documentation&gt;
03905:             *      &lt;/annotation&gt;
03906:             *      &lt;sequence minOccurs="0"&gt;
03907:             *          &lt;element ref="gml:TemporalDatum"/&gt;
03908:             *      &lt;/sequence&gt;
03909:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
03910:             *  &lt;/complexType&gt;
03911:             *
03912:             *    </code>
03913:             *   </pre>
03914:             * </p>
03915:             *
03916:             * @generated
03917:             */
03918:            public static final AttributeType TEMPORALDATUMREFTYPE_TYPE = AttributeTypeFactory
03919:                    .newAttributeType("TemporalDatumRefType",
03920:                            java.lang.Object.class);
03921:
03922:            /**
03923:             * <p>
03924:             *  <pre>
03925:             *   <code>
03926:             *  &lt;complexType name="DirectedEdgePropertyType"&gt;
03927:             *      &lt;sequence minOccurs="0"&gt;
03928:             *          &lt;element ref="gml:Edge"/&gt;
03929:             *      &lt;/sequence&gt;
03930:             *      &lt;attribute default="+" name="orientation" type="gml:SignType"/&gt;
03931:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
03932:             *  &lt;/complexType&gt;
03933:             *
03934:             *    </code>
03935:             *   </pre>
03936:             * </p>
03937:             *
03938:             * @generated
03939:             */
03940:            public static final AttributeType DIRECTEDEDGEPROPERTYTYPE_TYPE = AttributeTypeFactory
03941:                    .newAttributeType("DirectedEdgePropertyType",
03942:                            java.lang.Object.class);
03943:
03944:            /**
03945:             * <p>
03946:             *  <pre>
03947:             *   <code>
03948:             *  &lt;complexType name="VerticalDatumTypeType"&gt;
03949:             *      &lt;annotation&gt;
03950:             *          &lt;documentation&gt;Type of a vertical datum. &lt;/documentation&gt;
03951:             *      &lt;/annotation&gt;
03952:             *      &lt;simpleContent&gt;
03953:             *          &lt;restriction base="gml:CodeType"&gt;
03954:             *              &lt;attribute name="codeSpace" type="anyURI" use="required"&gt;
03955:             *                  &lt;annotation&gt;
03956:             *                      &lt;documentation&gt;Reference to a source of information specifying the values and meanings of all the allowed string values for this VerticalDatumTypeType. &lt;/documentation&gt;
03957:             *                  &lt;/annotation&gt;
03958:             *              &lt;/attribute&gt;
03959:             *          &lt;/restriction&gt;
03960:             *      &lt;/simpleContent&gt;
03961:             *  &lt;/complexType&gt;
03962:             *
03963:             *    </code>
03964:             *   </pre>
03965:             * </p>
03966:             *
03967:             * @generated
03968:             */
03969:            public static final AttributeType VERTICALDATUMTYPETYPE_TYPE = AttributeTypeFactory
03970:                    .newAttributeType("VerticalDatumTypeType",
03971:                            java.lang.Object.class);
03972:
03973:            /**
03974:             * <p>
03975:             *  <pre>
03976:             *   <code>
03977:             *  &lt;complexType name="ImageDatumType"&gt;
03978:             *      &lt;annotation&gt;
03979:             *          &lt;documentation&gt;An image datum defines the origin of an image coordinate reference system, and is used in a local context only. For more information, see OGC Abstract Specification Topic 2. &lt;/documentation&gt;
03980:             *      &lt;/annotation&gt;
03981:             *      &lt;complexContent&gt;
03982:             *          &lt;extension base="gml:AbstractDatumType"&gt;
03983:             *              &lt;sequence&gt;
03984:             *                  &lt;element ref="gml:pixelInCell"/&gt;
03985:             *              &lt;/sequence&gt;
03986:             *          &lt;/extension&gt;
03987:             *      &lt;/complexContent&gt;
03988:             *  &lt;/complexType&gt;
03989:             *
03990:             *    </code>
03991:             *   </pre>
03992:             * </p>
03993:             *
03994:             * @generated
03995:             */
03996:            public static final AttributeType IMAGEDATUMTYPE_TYPE = AttributeTypeFactory
03997:                    .newAttributeType("ImageDatumType", java.lang.Object.class);
03998:
03999:            /**
04000:             * <p>
04001:             *  <pre>
04002:             *   <code>
04003:             *  &lt;complexType name="FeatureCollectionType"&gt;
04004:             *      &lt;annotation&gt;
04005:             *          &lt;documentation&gt;Concrete generic feature collection.&lt;/documentation&gt;
04006:             *      &lt;/annotation&gt;
04007:             *      &lt;complexContent&gt;
04008:             *          &lt;extension base="gml:AbstractFeatureCollectionType"/&gt;
04009:             *      &lt;/complexContent&gt;
04010:             *  &lt;/complexType&gt;
04011:             *
04012:             *    </code>
04013:             *   </pre>
04014:             * </p>
04015:             *
04016:             * @generated
04017:             */
04018:            public static final AttributeType FEATURECOLLECTIONTYPE_TYPE = AttributeTypeFactory
04019:                    .newAttributeType("FeatureCollectionType",
04020:                            java.lang.Object.class);
04021:
04022:            /**
04023:             * <p>
04024:             *  <pre>
04025:             *   <code>
04026:             *  &lt;complexType name="DerivedCRSRefType"&gt;
04027:             *      &lt;annotation&gt;
04028:             *          &lt;documentation&gt;Association to a non-projected derived coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
04029:             *      &lt;/annotation&gt;
04030:             *      &lt;sequence minOccurs="0"&gt;
04031:             *          &lt;element ref="gml:DerivedCRS"/&gt;
04032:             *      &lt;/sequence&gt;
04033:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04034:             *  &lt;/complexType&gt;
04035:             *
04036:             *    </code>
04037:             *   </pre>
04038:             * </p>
04039:             *
04040:             * @generated
04041:             */
04042:            public static final AttributeType DERIVEDCRSREFTYPE_TYPE = AttributeTypeFactory
04043:                    .newAttributeType("DerivedCRSRefType",
04044:                            java.lang.Object.class);
04045:
04046:            /**
04047:             * <p>
04048:             *  <pre>
04049:             *   <code>
04050:             *  &lt;complexType name="EnvelopeType"&gt;
04051:             *      &lt;annotation&gt;
04052:             *          &lt;documentation&gt;Envelope defines an extent using a pair of positions defining opposite corners in arbitrary dimensions. The first direct
04053:             *                          position is the "lower corner" (a coordinate position consisting of all the minimal ordinates for each dimension for all points within the envelope),
04054:             *                          the second one the "upper corner" (a coordinate position consisting of all the maximal ordinates for each dimension for all points within the
04055:             *                          envelope).&lt;/documentation&gt;
04056:             *      &lt;/annotation&gt;
04057:             *      &lt;choice&gt;
04058:             *          &lt;sequence&gt;
04059:             *              &lt;element name="lowerCorner" type="gml:DirectPositionType"/&gt;
04060:             *              &lt;element name="upperCorner" type="gml:DirectPositionType"/&gt;
04061:             *          &lt;/sequence&gt;
04062:             *          &lt;element maxOccurs="2" minOccurs="2" ref="gml:coord"&gt;
04063:             *              &lt;annotation&gt;
04064:             *                  &lt;appinfo&gt;deprecated&lt;/appinfo&gt;
04065:             *                  &lt;documentation&gt;deprecated with GML version 3.0&lt;/documentation&gt;
04066:             *              &lt;/annotation&gt;
04067:             *          &lt;/element&gt;
04068:             *          &lt;element maxOccurs="2" minOccurs="2" ref="gml:pos"&gt;
04069:             *              &lt;annotation&gt;
04070:             *                  &lt;appinfo&gt;deprecated&lt;/appinfo&gt;
04071:             *                  &lt;documentation&gt;Deprecated with GML version 3.1. Use the explicit properties "lowerCorner" and "upperCorner" instead.&lt;/documentation&gt;
04072:             *              &lt;/annotation&gt;
04073:             *          &lt;/element&gt;
04074:             *          &lt;element ref="gml:coordinates"&gt;
04075:             *              &lt;annotation&gt;
04076:             *                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use the explicit properties "lowerCorner" and "upperCorner" instead.&lt;/documentation&gt;
04077:             *              &lt;/annotation&gt;
04078:             *          &lt;/element&gt;
04079:             *      &lt;/choice&gt;
04080:             *      &lt;attributeGroup ref="gml:SRSReferenceGroup"/&gt;
04081:             *  &lt;/complexType&gt;
04082:             *
04083:             *    </code>
04084:             *   </pre>
04085:             * </p>
04086:             *
04087:             * @generated
04088:             */
04089:            public static final AttributeType ENVELOPETYPE_TYPE = AttributeTypeFactory
04090:                    .newAttributeType("EnvelopeType", java.lang.Object.class);
04091:
04092:            /**
04093:             * <p>
04094:             *  <pre>
04095:             *   <code>
04096:             *  &lt;complexType name="IndexMapType"&gt;
04097:             *      &lt;annotation&gt;
04098:             *          &lt;documentation&gt;Exends GridFunctionType with a lookUpTable.  This contains a list of indexes of members within the rangeSet corresponding with the members of the domainSet.  The domainSet is traversed in list order if it is enumerated explicitly, or in the order specified by a SequenceRule if the domain is an implicit set.    The length of the lookUpTable corresponds with the length of the subset of the domainSet for which the coverage is defined.&lt;/documentation&gt;
04099:             *      &lt;/annotation&gt;
04100:             *      &lt;complexContent&gt;
04101:             *          &lt;extension base="gml:GridFunctionType"&gt;
04102:             *              &lt;sequence&gt;
04103:             *                  &lt;element name="lookUpTable" type="gml:integerList"/&gt;
04104:             *              &lt;/sequence&gt;
04105:             *          &lt;/extension&gt;
04106:             *      &lt;/complexContent&gt;
04107:             *  &lt;/complexType&gt;
04108:             *
04109:             *    </code>
04110:             *   </pre>
04111:             * </p>
04112:             *
04113:             * @generated
04114:             */
04115:            public static final AttributeType INDEXMAPTYPE_TYPE = AttributeTypeFactory
04116:                    .newAttributeType("IndexMapType", java.lang.Object.class);
04117:
04118:            /**
04119:             * <p>
04120:             *  <pre>
04121:             *   <code>
04122:             *  &lt;complexType name="SequenceRuleType"&gt;
04123:             *      &lt;simpleContent&gt;
04124:             *          &lt;extension base="gml:SequenceRuleNames"&gt;
04125:             *              &lt;attribute name="order" type="gml:IncrementOrder" use="optional"/&gt;
04126:             *          &lt;/extension&gt;
04127:             *      &lt;/simpleContent&gt;
04128:             *  &lt;/complexType&gt;
04129:             *
04130:             *    </code>
04131:             *   </pre>
04132:             * </p>
04133:             *
04134:             * @generated
04135:             */
04136:            public static final AttributeType SEQUENCERULETYPE_TYPE = AttributeTypeFactory
04137:                    .newAttributeType("SequenceRuleType",
04138:                            java.lang.Object.class);
04139:
04140:            /**
04141:             * <p>
04142:             *  <pre>
04143:             *   <code>
04144:             *  &lt;complexType name="ProjectedCRSRefType"&gt;
04145:             *      &lt;annotation&gt;
04146:             *          &lt;documentation&gt;Association to a projected coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
04147:             *      &lt;/annotation&gt;
04148:             *      &lt;sequence minOccurs="0"&gt;
04149:             *          &lt;element ref="gml:ProjectedCRS"/&gt;
04150:             *      &lt;/sequence&gt;
04151:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04152:             *  &lt;/complexType&gt;
04153:             *
04154:             *    </code>
04155:             *   </pre>
04156:             * </p>
04157:             *
04158:             * @generated
04159:             */
04160:            public static final AttributeType PROJECTEDCRSREFTYPE_TYPE = AttributeTypeFactory
04161:                    .newAttributeType("ProjectedCRSRefType",
04162:                            java.lang.Object.class);
04163:
04164:            /**
04165:             * <p>
04166:             *  <pre>
04167:             *   <code>
04168:             *  &lt;complexType name="RelativeInternalPositionalAccuracyType"&gt;
04169:             *      &lt;annotation&gt;
04170:             *          &lt;documentation&gt;Closeness of the relative positions of two or more positions to their respective relative positions accepted as or being true. &lt;/documentation&gt;
04171:             *      &lt;/annotation&gt;
04172:             *      &lt;complexContent&gt;
04173:             *          &lt;extension base="gml:AbstractPositionalAccuracyType"&gt;
04174:             *              &lt;sequence&gt;
04175:             *                  &lt;element ref="gml:result"/&gt;
04176:             *              &lt;/sequence&gt;
04177:             *          &lt;/extension&gt;
04178:             *      &lt;/complexContent&gt;
04179:             *  &lt;/complexType&gt;
04180:             *
04181:             *    </code>
04182:             *   </pre>
04183:             * </p>
04184:             *
04185:             * @generated
04186:             */
04187:            public static final AttributeType RELATIVEINTERNALPOSITIONALACCURACYTYPE_TYPE = AttributeTypeFactory
04188:                    .newAttributeType("RelativeInternalPositionalAccuracyType",
04189:                            java.lang.Object.class);
04190:
04191:            /**
04192:             * <p>
04193:             *  <pre>
04194:             *   <code>
04195:             *  &lt;complexType name="DerivedCRSTypeType"&gt;
04196:             *      &lt;annotation&gt;
04197:             *          &lt;documentation&gt;Type of a derived coordinate reference system. &lt;/documentation&gt;
04198:             *      &lt;/annotation&gt;
04199:             *      &lt;simpleContent&gt;
04200:             *          &lt;restriction base="gml:CodeType"&gt;
04201:             *              &lt;attribute name="codeSpace" type="anyURI" use="required"&gt;
04202:             *                  &lt;annotation&gt;
04203:             *                      &lt;documentation&gt;Reference to a source of information specifying the values and meanings of all the allowed string values for this DerivedCRSTypeType. &lt;/documentation&gt;
04204:             *                  &lt;/annotation&gt;
04205:             *              &lt;/attribute&gt;
04206:             *          &lt;/restriction&gt;
04207:             *      &lt;/simpleContent&gt;
04208:             *  &lt;/complexType&gt;
04209:             *
04210:             *    </code>
04211:             *   </pre>
04212:             * </p>
04213:             *
04214:             * @generated
04215:             */
04216:            public static final AttributeType DERIVEDCRSTYPETYPE_TYPE = AttributeTypeFactory
04217:                    .newAttributeType("DerivedCRSTypeType",
04218:                            java.lang.Object.class);
04219:
04220:            /**
04221:             * <p>
04222:             *  <pre>
04223:             *   <code>
04224:             *  &lt;complexType abstract="true" name="AbstractReferenceSystemType"&gt;
04225:             *      &lt;annotation&gt;
04226:             *          &lt;documentation&gt;Description of a spatial and/or temporal reference system used by a dataset.&lt;/documentation&gt;
04227:             *      &lt;/annotation&gt;
04228:             *      &lt;complexContent&gt;
04229:             *          &lt;extension base="gml:AbstractReferenceSystemBaseType"&gt;
04230:             *              &lt;sequence&gt;
04231:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:srsID"&gt;
04232:             *                      &lt;annotation&gt;
04233:             *                          &lt;documentation&gt;Set of alterative identifications of this reference system. The first srsID, if any, is normally the primary identification code, and any others are aliases.&lt;/documentation&gt;
04234:             *                      &lt;/annotation&gt;
04235:             *                  &lt;/element&gt;
04236:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
04237:             *                      &lt;annotation&gt;
04238:             *                          &lt;documentation&gt;Comments on or information about this reference system, including source information.&lt;/documentation&gt;
04239:             *                      &lt;/annotation&gt;
04240:             *                  &lt;/element&gt;
04241:             *                  &lt;element minOccurs="0" ref="gml:validArea"/&gt;
04242:             *                  &lt;element minOccurs="0" ref="gml:scope"/&gt;
04243:             *              &lt;/sequence&gt;
04244:             *          &lt;/extension&gt;
04245:             *      &lt;/complexContent&gt;
04246:             *  &lt;/complexType&gt;
04247:             *
04248:             *    </code>
04249:             *   </pre>
04250:             * </p>
04251:             *
04252:             * @generated
04253:             */
04254:            public static final AttributeType ABSTRACTREFERENCESYSTEMTYPE_TYPE = AttributeTypeFactory
04255:                    .newAttributeType("AbstractReferenceSystemType",
04256:                            java.lang.Object.class);
04257:
04258:            /**
04259:             * <p>
04260:             *  <pre>
04261:             *   <code>
04262:             *  &lt;complexType name="ObservationType"&gt;
04263:             *      &lt;complexContent&gt;
04264:             *          &lt;extension base="gml:AbstractFeatureType"&gt;
04265:             *              &lt;sequence&gt;
04266:             *                  &lt;element ref="gml:validTime"/&gt;
04267:             *                  &lt;element minOccurs="0" ref="gml:using"/&gt;
04268:             *                  &lt;element minOccurs="0" ref="gml:target"/&gt;
04269:             *                  &lt;element ref="gml:resultOf"/&gt;
04270:             *              &lt;/sequence&gt;
04271:             *          &lt;/extension&gt;
04272:             *      &lt;/complexContent&gt;
04273:             *  &lt;/complexType&gt;
04274:             *
04275:             *    </code>
04276:             *   </pre>
04277:             * </p>
04278:             *
04279:             * @generated
04280:             */
04281:            public static final AttributeType OBSERVATIONTYPE_TYPE = AttributeTypeFactory
04282:                    .newAttributeType("ObservationType", java.lang.Object.class);
04283:
04284:            /**
04285:             * <p>
04286:             *  <pre>
04287:             *   <code>
04288:             *  &lt;complexType name="EllipsoidRefType"&gt;
04289:             *      &lt;annotation&gt;
04290:             *          &lt;documentation&gt;Association to an ellipsoid, either referencing or containing the definition of that ellipsoid. &lt;/documentation&gt;
04291:             *      &lt;/annotation&gt;
04292:             *      &lt;sequence minOccurs="0"&gt;
04293:             *          &lt;element ref="gml:Ellipsoid"/&gt;
04294:             *      &lt;/sequence&gt;
04295:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04296:             *  &lt;/complexType&gt;
04297:             *
04298:             *    </code>
04299:             *   </pre>
04300:             * </p>
04301:             *
04302:             * @generated
04303:             */
04304:            public static final AttributeType ELLIPSOIDREFTYPE_TYPE = AttributeTypeFactory
04305:                    .newAttributeType("EllipsoidRefType",
04306:                            java.lang.Object.class);
04307:
04308:            /**
04309:             * <p>
04310:             *  <pre>
04311:             *   <code>
04312:             *  &lt;complexType name="TimeType"&gt;
04313:             *      &lt;annotation&gt;
04314:             *          &lt;documentation&gt;Value of a time or temporal quantity, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a time value, such as seconds or weeks.&lt;/documentation&gt;
04315:             *      &lt;/annotation&gt;
04316:             *      &lt;simpleContent&gt;
04317:             *          &lt;restriction base="gml:MeasureType"/&gt;
04318:             *      &lt;/simpleContent&gt;
04319:             *  &lt;/complexType&gt;
04320:             *
04321:             *    </code>
04322:             *   </pre>
04323:             * </p>
04324:             *
04325:             * @generated
04326:             */
04327:            public static final AttributeType TIMETYPE_TYPE = AttributeTypeFactory
04328:                    .newAttributeType("TimeType", java.lang.Object.class);
04329:
04330:            /**
04331:             * <p>
04332:             *  <pre>
04333:             *   <code>
04334:             *  &lt;complexType name="DirectionVectorType"&gt;
04335:             *      &lt;annotation&gt;
04336:             *          &lt;documentation&gt;Direction expressed as a vector, either using components, or using angles.&lt;/documentation&gt;
04337:             *      &lt;/annotation&gt;
04338:             *      &lt;choice&gt;
04339:             *          &lt;element ref="gml:vector"/&gt;
04340:             *          &lt;sequence&gt;
04341:             *              &lt;element name="horizontalAngle" type="gml:AngleType"/&gt;
04342:             *              &lt;element name="verticalAngle" type="gml:AngleType"/&gt;
04343:             *          &lt;/sequence&gt;
04344:             *      &lt;/choice&gt;
04345:             *  &lt;/complexType&gt;
04346:             *
04347:             *    </code>
04348:             *   </pre>
04349:             * </p>
04350:             *
04351:             * @generated
04352:             */
04353:            public static final AttributeType DIRECTIONVECTORTYPE_TYPE = AttributeTypeFactory
04354:                    .newAttributeType("DirectionVectorType",
04355:                            java.lang.Object.class);
04356:
04357:            /**
04358:             * <p>
04359:             *  <pre>
04360:             *   <code>
04361:             *  &lt;complexType name="FileType"&gt;
04362:             *      &lt;sequence&gt;
04363:             *          &lt;element ref="gml:rangeParameters"/&gt;
04364:             *          &lt;element name="fileName" type="anyURI"/&gt;
04365:             *          &lt;element name="fileStructure" type="gml:FileValueModelType"/&gt;
04366:             *          &lt;element minOccurs="0" name="mimeType" type="anyURI"/&gt;
04367:             *          &lt;element minOccurs="0" name="compression" type="anyURI"/&gt;
04368:             *      &lt;/sequence&gt;
04369:             *  &lt;/complexType&gt;
04370:             *
04371:             *    </code>
04372:             *   </pre>
04373:             * </p>
04374:             *
04375:             * @generated
04376:             */
04377:            public static final AttributeType FILETYPE_TYPE = AttributeTypeFactory
04378:                    .newAttributeType("FileType", java.lang.Object.class);
04379:
04380:            /**
04381:             * <p>
04382:             *  <pre>
04383:             *   <code>
04384:             *  &lt;complexType name="CurveArrayPropertyType"&gt;
04385:             *      &lt;annotation&gt;
04386:             *          &lt;documentation&gt;A container for an array of curves. The elements are always contained in the array property, referencing geometry elements
04387:             *                          or arrays of geometry elements is not supported.&lt;/documentation&gt;
04388:             *      &lt;/annotation&gt;
04389:             *      &lt;sequence&gt;
04390:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_Curve"/&gt;
04391:             *      &lt;/sequence&gt;
04392:             *  &lt;/complexType&gt;
04393:             *
04394:             *    </code>
04395:             *   </pre>
04396:             * </p>
04397:             *
04398:             * @generated
04399:             */
04400:            public static final AttributeType CURVEARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
04401:                    .newAttributeType("CurveArrayPropertyType",
04402:                            MultiLineString[].class);
04403:
04404:            /**
04405:             * <p>
04406:             *  <pre>
04407:             *   <code>
04408:             *  &lt;complexType name="FeatureStylePropertyType"&gt;
04409:             *      &lt;annotation&gt;
04410:             *          &lt;documentation/&gt;
04411:             *      &lt;/annotation&gt;
04412:             *      &lt;sequence&gt;
04413:             *          &lt;element minOccurs="0" ref="gml:FeatureStyle"/&gt;
04414:             *      &lt;/sequence&gt;
04415:             *      &lt;attribute name="about" type="anyURI" use="optional"/&gt;
04416:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04417:             *  &lt;/complexType&gt;
04418:             *
04419:             *    </code>
04420:             *   </pre>
04421:             * </p>
04422:             *
04423:             * @generated
04424:             */
04425:            public static final AttributeType FEATURESTYLEPROPERTYTYPE_TYPE = AttributeTypeFactory
04426:                    .newAttributeType("FeatureStylePropertyType",
04427:                            java.lang.Object.class);
04428:
04429:            /**
04430:             * <p>
04431:             *  <pre>
04432:             *   <code>
04433:             *  &lt;complexType name="DirectedObservationAtDistanceType"&gt;
04434:             *      &lt;complexContent&gt;
04435:             *          &lt;extension base="gml:DirectedObservationType"&gt;
04436:             *              &lt;sequence&gt;
04437:             *                  &lt;element name="distance" type="gml:MeasureType"/&gt;
04438:             *              &lt;/sequence&gt;
04439:             *          &lt;/extension&gt;
04440:             *      &lt;/complexContent&gt;
04441:             *  &lt;/complexType&gt;
04442:             *
04443:             *    </code>
04444:             *   </pre>
04445:             * </p>
04446:             *
04447:             * @generated
04448:             */
04449:            public static final AttributeType DIRECTEDOBSERVATIONATDISTANCETYPE_TYPE = AttributeTypeFactory
04450:                    .newAttributeType("DirectedObservationAtDistanceType",
04451:                            java.lang.Object.class);
04452:
04453:            /**
04454:             * <p>
04455:             *  <pre>
04456:             *   <code>
04457:             *  &lt;complexType name="GridDomainType"&gt;
04458:             *      &lt;complexContent&gt;
04459:             *          &lt;restriction base="gml:DomainSetType"&gt;
04460:             *              &lt;sequence minOccurs="0"&gt;
04461:             *                  &lt;element ref="gml:Grid"/&gt;
04462:             *              &lt;/sequence&gt;
04463:             *              &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04464:             *          &lt;/restriction&gt;
04465:             *      &lt;/complexContent&gt;
04466:             *  &lt;/complexType&gt;
04467:             *
04468:             *    </code>
04469:             *   </pre>
04470:             * </p>
04471:             *
04472:             * @generated
04473:             */
04474:            public static final AttributeType GRIDDOMAINTYPE_TYPE = AttributeTypeFactory
04475:                    .newAttributeType("GridDomainType", java.lang.Object.class);
04476:
04477:            /**
04478:             * <p>
04479:             *  <pre>
04480:             *   <code>
04481:             *  &lt;complexType name="ArrayAssociationType"&gt;
04482:             *      &lt;annotation&gt;
04483:             *          &lt;documentation&gt;A base for derived types used to specify complex types containing an array of objects, by unspecified UML association - either composition or aggregation.  An instance of this type contains elements representing Objects.
04484:             *
04485:             *  Ideally this type would be derived by extension of AssociationType.
04486:             *  However, this leads to a non-deterministic content model, since both the base and the extension have minOccurs="0", and is thus prohibited in XML Schema.&lt;/documentation&gt;
04487:             *      &lt;/annotation&gt;
04488:             *      &lt;sequence&gt;
04489:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_Object"/&gt;
04490:             *      &lt;/sequence&gt;
04491:             *  &lt;/complexType&gt;
04492:             *
04493:             *    </code>
04494:             *   </pre>
04495:             * </p>
04496:             *
04497:             * @generated
04498:             */
04499:            public static final AttributeType ARRAYASSOCIATIONTYPE_TYPE = AttributeTypeFactory
04500:                    .newAttributeType("ArrayAssociationType",
04501:                            java.lang.Object.class);
04502:
04503:            /**
04504:             * <p>
04505:             *  <pre>
04506:             *   <code>
04507:             *  &lt;complexType name="RectangleType"&gt;
04508:             *      &lt;annotation&gt;
04509:             *          &lt;documentation&gt;Represents a rectangle as a surface with an outer boundary consisting of a linear ring. Note that this is a polygon (subtype) with no inner boundaries. The number of points in the linear ring must be five.&lt;/documentation&gt;
04510:             *      &lt;/annotation&gt;
04511:             *      &lt;complexContent&gt;
04512:             *          &lt;extension base="gml:AbstractSurfacePatchType"&gt;
04513:             *              &lt;sequence&gt;
04514:             *                  &lt;element ref="gml:exterior"&gt;
04515:             *                      &lt;annotation&gt;
04516:             *                          &lt;documentation&gt;Constraint: The Ring shall be a LinearRing and must form a rectangle; the first and the last position must be co-incident.&lt;/documentation&gt;
04517:             *                      &lt;/annotation&gt;
04518:             *                  &lt;/element&gt;
04519:             *              &lt;/sequence&gt;
04520:             *              &lt;attribute fixed="planar" name="interpolation" type="gml:SurfaceInterpolationType"&gt;
04521:             *                  &lt;annotation&gt;
04522:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the interpolation mechanism used for this surface patch. Currently only planar surface patches are defined in GML 3, the attribute is fixed to "planar", i.e. the interpolation method shall return points on a single plane. The boundary of the patch shall be contained within that plane.&lt;/documentation&gt;
04523:             *                  &lt;/annotation&gt;
04524:             *              &lt;/attribute&gt;
04525:             *          &lt;/extension&gt;
04526:             *      &lt;/complexContent&gt;
04527:             *  &lt;/complexType&gt;
04528:             *
04529:             *    </code>
04530:             *   </pre>
04531:             * </p>
04532:             *
04533:             * @generated
04534:             */
04535:            public static final AttributeType RECTANGLETYPE_TYPE = AttributeTypeFactory
04536:                    .newAttributeType("RectangleType", java.lang.Object.class);
04537:
04538:            /**
04539:             * <p>
04540:             *  <pre>
04541:             *   <code>
04542:             *  &lt;complexType name="TimeClockPropertyType"&gt;
04543:             *      &lt;sequence minOccurs="0"&gt;
04544:             *          &lt;element ref="gml:TimeClock"/&gt;
04545:             *      &lt;/sequence&gt;
04546:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04547:             *  &lt;/complexType&gt;
04548:             *
04549:             *    </code>
04550:             *   </pre>
04551:             * </p>
04552:             *
04553:             * @generated
04554:             */
04555:            public static final AttributeType TIMECLOCKPROPERTYTYPE_TYPE = AttributeTypeFactory
04556:                    .newAttributeType("TimeClockPropertyType",
04557:                            java.lang.Object.class);
04558:
04559:            /**
04560:             * <p>
04561:             *  <pre>
04562:             *   <code>
04563:             *  &lt;complexType name="TimePeriodType"&gt;
04564:             *      &lt;complexContent&gt;
04565:             *          &lt;extension base="gml:AbstractTimeGeometricPrimitiveType"&gt;
04566:             *              &lt;sequence&gt;
04567:             *                  &lt;choice&gt;
04568:             *                      &lt;element name="beginPosition" type="gml:TimePositionType"/&gt;
04569:             *                      &lt;element name="begin" type="gml:TimeInstantPropertyType"/&gt;
04570:             *                  &lt;/choice&gt;
04571:             *                  &lt;choice&gt;
04572:             *                      &lt;element name="endPosition" type="gml:TimePositionType"/&gt;
04573:             *                      &lt;element name="end" type="gml:TimeInstantPropertyType"/&gt;
04574:             *                  &lt;/choice&gt;
04575:             *                  &lt;group minOccurs="0" ref="gml:timeLength"/&gt;
04576:             *              &lt;/sequence&gt;
04577:             *          &lt;/extension&gt;
04578:             *      &lt;/complexContent&gt;
04579:             *  &lt;/complexType&gt;
04580:             *
04581:             *    </code>
04582:             *   </pre>
04583:             * </p>
04584:             *
04585:             * @generated
04586:             */
04587:            public static final AttributeType TIMEPERIODTYPE_TYPE = AttributeTypeFactory
04588:                    .newAttributeType("TimePeriodType", java.lang.Object.class);
04589:
04590:            /**
04591:             * <p>
04592:             *  <pre>
04593:             *   <code>
04594:             *  &lt;complexType name="MultiCurvePropertyType"&gt;
04595:             *      &lt;annotation&gt;
04596:             *          &lt;documentation&gt;A property that has a collection of curves as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
04597:             *      &lt;/annotation&gt;
04598:             *      &lt;sequence minOccurs="0"&gt;
04599:             *          &lt;element ref="gml:MultiCurve"/&gt;
04600:             *      &lt;/sequence&gt;
04601:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
04602:             *          &lt;annotation&gt;
04603:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
04604:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
04605:             *          &lt;/annotation&gt;
04606:             *      &lt;/attributeGroup&gt;
04607:             *  &lt;/complexType&gt;
04608:             *
04609:             *    </code>
04610:             *   </pre>
04611:             * </p>
04612:             *
04613:             * @generated
04614:             */
04615:            public static final AttributeType MULTICURVEPROPERTYTYPE_TYPE = AttributeTypeFactory
04616:                    .newAttributeType("MultiCurvePropertyType",
04617:                            MultiLineString[].class);
04618:
04619:            /**
04620:             * <p>
04621:             *  <pre>
04622:             *   <code>
04623:             *  &lt;complexType name="DerivedUnitType"&gt;
04624:             *      &lt;annotation&gt;
04625:             *          &lt;documentation&gt;Definition of a unit of measure which is defined through algebraic combination of more primitive units, which are usually base units from a particular system of units. Derived units based directly on base units are usually preferred for quantities other than the base units or fundamental quantities within a system.  If a derived unit is not the preferred unit, the ConventionalUnit element should be used instead.&lt;/documentation&gt;
04626:             *      &lt;/annotation&gt;
04627:             *      &lt;complexContent&gt;
04628:             *          &lt;extension base="gml:UnitDefinitionType"&gt;
04629:             *              &lt;sequence&gt;
04630:             *                  &lt;element maxOccurs="unbounded" ref="gml:derivationUnitTerm"/&gt;
04631:             *              &lt;/sequence&gt;
04632:             *          &lt;/extension&gt;
04633:             *      &lt;/complexContent&gt;
04634:             *  &lt;/complexType&gt;
04635:             *
04636:             *    </code>
04637:             *   </pre>
04638:             * </p>
04639:             *
04640:             * @generated
04641:             */
04642:            public static final AttributeType DERIVEDUNITTYPE_TYPE = AttributeTypeFactory
04643:                    .newAttributeType("DerivedUnitType", java.lang.Object.class);
04644:
04645:            /**
04646:             * <p>
04647:             *  <pre>
04648:             *   <code>
04649:             *  &lt;complexType name="ConversionRefType"&gt;
04650:             *      &lt;annotation&gt;
04651:             *          &lt;documentation&gt;Association to a concrete general-purpose conversion, either referencing or containing the definition of that conversion. &lt;/documentation&gt;
04652:             *      &lt;/annotation&gt;
04653:             *      &lt;sequence minOccurs="0"&gt;
04654:             *          &lt;element ref="gml:Conversion"/&gt;
04655:             *      &lt;/sequence&gt;
04656:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04657:             *  &lt;/complexType&gt;
04658:             *
04659:             *    </code>
04660:             *   </pre>
04661:             * </p>
04662:             *
04663:             * @generated
04664:             */
04665:            public static final AttributeType CONVERSIONREFTYPE_TYPE = AttributeTypeFactory
04666:                    .newAttributeType("ConversionRefType",
04667:                            java.lang.Object.class);
04668:
04669:            /**
04670:             * <p>
04671:             *  <pre>
04672:             *   <code>
04673:             *  &lt;complexType name="ClothoidType"&gt;
04674:             *      &lt;annotation&gt;
04675:             *          &lt;documentation&gt;A clothoid, or Cornu's spiral, is plane
04676:             *     curve whose curvature is a fixed function of its length.
04677:             *     In suitably chosen co-ordinates it is given by Fresnel's
04678:             *     integrals.
04679:             *
04680:             *      x(t) = 0-integral-t cos(AT*T/2)dT
04681:             *
04682:             *      y(t) = 0-integral-t sin(AT*T/2)dT
04683:             *
04684:             *     This geometry is mainly used as a transition curve between
04685:             *     curves of type straight line to circular arc or circular arc
04686:             *     to circular arc. With this curve type it is possible to
04687:             *     achieve a C2-continous transition between the above mentioned
04688:             *     curve types. One formula for the Clothoid is A*A = R*t where
04689:             *     A is constant, R is the varying radius of curvature along the
04690:             *     the curve and t is the length along and given in the Fresnel
04691:             *     integrals.&lt;/documentation&gt;
04692:             *      &lt;/annotation&gt;
04693:             *      &lt;complexContent&gt;
04694:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
04695:             *              &lt;sequence&gt;
04696:             *                  &lt;element name="refLocation"&gt;
04697:             *                      &lt;complexType&gt;
04698:             *                          &lt;sequence&gt;
04699:             *                              &lt;element ref="gml:AffinePlacement"&gt;
04700:             *                                  &lt;annotation&gt;
04701:             *                                      &lt;documentation&gt;The "refLocation" is an affine mapping
04702:             *            that places  the curve defined by the Fresnel Integrals
04703:             *            into the co-ordinate reference system of this object.&lt;/documentation&gt;
04704:             *                                  &lt;/annotation&gt;
04705:             *                              &lt;/element&gt;
04706:             *                          &lt;/sequence&gt;
04707:             *                      &lt;/complexType&gt;
04708:             *                  &lt;/element&gt;
04709:             *                  &lt;element name="scaleFactor" type="decimal"&gt;
04710:             *                      &lt;annotation&gt;
04711:             *                          &lt;documentation&gt;The element gives the value for the
04712:             *         constant in the Fresnel's integrals.&lt;/documentation&gt;
04713:             *                      &lt;/annotation&gt;
04714:             *                  &lt;/element&gt;
04715:             *                  &lt;element name="startParameter" type="double"&gt;
04716:             *                      &lt;annotation&gt;
04717:             *                          &lt;documentation&gt;The startParameter is the arc length
04718:             *         distance from the inflection point that will be the start
04719:             *         point for this curve segment. This shall be lower limit
04720:             *         used in the Fresnel integral and is the value of the
04721:             *         constructive parameter of this curve segment at its start
04722:             *         point. The startParameter can either be positive or
04723:             *         negative.
04724:             *         NOTE! If 0.0 (zero), lies between the startParameter and
04725:             *         the endParameter of the clothoid, then the curve goes
04726:             *         through the clothoid's inflection point, and the direction
04727:             *         of its radius of curvature, given by the second
04728:             *         derivative vector, changes sides with respect to the
04729:             *         tangent vector. The term length distance for the&lt;/documentation&gt;
04730:             *                      &lt;/annotation&gt;
04731:             *                  &lt;/element&gt;
04732:             *                  &lt;element name="endParameter" type="double"&gt;
04733:             *                      &lt;annotation&gt;
04734:             *                          &lt;documentation&gt;The endParameter is the arc length
04735:             *         distance from the inflection point that will be the end
04736:             *         point for this curve segment. This shall be upper limit
04737:             *         used in the Fresnel integral and is the value of the
04738:             *         constructive parameter of this curve segment at its
04739:             *         start point. The startParameter can either be positive
04740:             *         or negative.&lt;/documentation&gt;
04741:             *                      &lt;/annotation&gt;
04742:             *                  &lt;/element&gt;
04743:             *              &lt;/sequence&gt;
04744:             *          &lt;/extension&gt;
04745:             *      &lt;/complexContent&gt;
04746:             *  &lt;/complexType&gt;
04747:             *
04748:             *    </code>
04749:             *   </pre>
04750:             * </p>
04751:             *
04752:             * @generated
04753:             */
04754:            public static final AttributeType CLOTHOIDTYPE_TYPE = AttributeTypeFactory
04755:                    .newAttributeType("ClothoidType", java.lang.Object.class);
04756:
04757:            /**
04758:             * <p>
04759:             *  <pre>
04760:             *   <code>
04761:             *  &lt;complexType name="TargetPropertyType"&gt;
04762:             *      &lt;annotation&gt;
04763:             *          &lt;documentation&gt;Container for an object representing the target or subject of an observation.&lt;/documentation&gt;
04764:             *      &lt;/annotation&gt;
04765:             *      &lt;sequence minOccurs="0"&gt;
04766:             *          &lt;choice&gt;
04767:             *              &lt;element ref="gml:_Feature"/&gt;
04768:             *              &lt;element ref="gml:_Geometry"/&gt;
04769:             *          &lt;/choice&gt;
04770:             *      &lt;/sequence&gt;
04771:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04772:             *  &lt;/complexType&gt;
04773:             *
04774:             *    </code>
04775:             *   </pre>
04776:             * </p>
04777:             *
04778:             * @generated
04779:             */
04780:            public static final AttributeType TARGETPROPERTYTYPE_TYPE = AttributeTypeFactory
04781:                    .newAttributeType("TargetPropertyType",
04782:                            java.lang.Object.class);
04783:
04784:            /**
04785:             * <p>
04786:             *  <pre>
04787:             *   <code>
04788:             *  &lt;complexType abstract="true" name="AbstractCoordinateOperationBaseType"&gt;
04789:             *      &lt;annotation&gt;
04790:             *          &lt;documentation&gt;Basic encoding for coordinate operation objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
04791:             *      &lt;/annotation&gt;
04792:             *      &lt;complexContent&gt;
04793:             *          &lt;restriction base="gml:DefinitionType"&gt;
04794:             *              &lt;sequence&gt;
04795:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
04796:             *                  &lt;element ref="gml:coordinateOperationName"/&gt;
04797:             *              &lt;/sequence&gt;
04798:             *              &lt;attribute ref="gml:id" use="required"/&gt;
04799:             *          &lt;/restriction&gt;
04800:             *      &lt;/complexContent&gt;
04801:             *  &lt;/complexType&gt;
04802:             *
04803:             *    </code>
04804:             *   </pre>
04805:             * </p>
04806:             *
04807:             * @generated
04808:             */
04809:            public static final AttributeType ABSTRACTCOORDINATEOPERATIONBASETYPE_TYPE = AttributeTypeFactory
04810:                    .newAttributeType("AbstractCoordinateOperationBaseType",
04811:                            java.lang.Object.class);
04812:
04813:            /**
04814:             * <p>
04815:             *  <pre>
04816:             *   <code>
04817:             *  &lt;complexType name="MultiLineStringPropertyType"&gt;
04818:             *      &lt;annotation&gt;
04819:             *          &lt;documentation&gt;This type is deprecated with GML 3 and shall not be used. It is included for backwards compatibility with GML 2. Use MultiCurvePropertyType instead.
04820:             *  A property that has a collection of line strings as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
04821:             *      &lt;/annotation&gt;
04822:             *      &lt;sequence minOccurs="0"&gt;
04823:             *          &lt;element ref="gml:MultiLineString"/&gt;
04824:             *      &lt;/sequence&gt;
04825:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
04826:             *          &lt;annotation&gt;
04827:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
04828:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
04829:             *          &lt;/annotation&gt;
04830:             *      &lt;/attributeGroup&gt;
04831:             *  &lt;/complexType&gt;
04832:             *
04833:             *    </code>
04834:             *   </pre>
04835:             * </p>
04836:             *
04837:             * @generated
04838:             */
04839:            public static final AttributeType MULTILINESTRINGPROPERTYTYPE_TYPE = AttributeTypeFactory
04840:                    .newAttributeType("MultiLineStringPropertyType",
04841:                            MultiLineString.class);
04842:
04843:            /**
04844:             * <p>
04845:             *  <pre>
04846:             *   <code>
04847:             *  &lt;complexType name="TimeEdgePropertyType"&gt;
04848:             *      &lt;annotation&gt;
04849:             *          &lt;documentation&gt;A time edge property can either be any time edge element encapsulated in an element of this type
04850:             *                          or an XLink reference to a remote time edge element (where remote includes elements located elsewhere in the same document).
04851:             *                          Note that either the reference or the contained element must be given, but not both or none.&lt;/documentation&gt;
04852:             *      &lt;/annotation&gt;
04853:             *      &lt;sequence minOccurs="0"&gt;
04854:             *          &lt;element ref="gml:TimeEdge"/&gt;
04855:             *      &lt;/sequence&gt;
04856:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04857:             *  &lt;/complexType&gt;
04858:             *
04859:             *    </code>
04860:             *   </pre>
04861:             * </p>
04862:             *
04863:             * @generated
04864:             */
04865:            public static final AttributeType TIMEEDGEPROPERTYTYPE_TYPE = AttributeTypeFactory
04866:                    .newAttributeType("TimeEdgePropertyType",
04867:                            java.lang.Object.class);
04868:
04869:            /**
04870:             * <p>
04871:             *  <pre>
04872:             *   <code>
04873:             *  &lt;complexType name="ValueArrayPropertyType"&gt;
04874:             *      &lt;annotation&gt;
04875:             *          &lt;documentation&gt;GML property which refers to, or contains, a set of homogeneously typed Values.&lt;/documentation&gt;
04876:             *      &lt;/annotation&gt;
04877:             *      &lt;sequence&gt;
04878:             *          &lt;group maxOccurs="unbounded" ref="gml:Value"/&gt;
04879:             *      &lt;/sequence&gt;
04880:             *  &lt;/complexType&gt;
04881:             *
04882:             *    </code>
04883:             *   </pre>
04884:             * </p>
04885:             *
04886:             * @generated
04887:             */
04888:            public static final AttributeType VALUEARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
04889:                    .newAttributeType("ValueArrayPropertyType",
04890:                            java.lang.Object.class);
04891:
04892:            /**
04893:             * <p>
04894:             *  <pre>
04895:             *   <code>
04896:             *  &lt;complexType name="RangeParametersType"&gt;
04897:             *      &lt;annotation&gt;
04898:             *          &lt;documentation&gt;Metadata about the rangeSet.  Definition of record structure.
04899:             *        This is required if the rangeSet is encoded in a DataBlock.
04900:             *        We use a gml:_Value with empty values as a map of the composite value structure.&lt;/documentation&gt;
04901:             *      &lt;/annotation&gt;
04902:             *      &lt;sequence minOccurs="0"&gt;
04903:             *          &lt;group ref="gml:ValueObject"/&gt;
04904:             *      &lt;/sequence&gt;
04905:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04906:             *  &lt;/complexType&gt;
04907:             *
04908:             *    </code>
04909:             *   </pre>
04910:             * </p>
04911:             *
04912:             * @generated
04913:             */
04914:            public static final AttributeType RANGEPARAMETERSTYPE_TYPE = AttributeTypeFactory
04915:                    .newAttributeType("RangeParametersType",
04916:                            java.lang.Object.class);
04917:
04918:            /**
04919:             * <p>
04920:             *  <pre>
04921:             *   <code>
04922:             *  &lt;simpleType name="doubleOrNullList"&gt;
04923:             *      &lt;annotation&gt;
04924:             *          &lt;documentation&gt;XML List based on the union type defined above.  An element declared with this type contains a space-separated list of double values with null values interspersed as needed&lt;/documentation&gt;
04925:             *      &lt;/annotation&gt;
04926:             *      &lt;list itemType="gml:doubleOrNull"/&gt;
04927:             *  &lt;/simpleType&gt;
04928:             *
04929:             *    </code>
04930:             *   </pre>
04931:             * </p>
04932:             *
04933:             * @generated
04934:             */
04935:            public static final AttributeType DOUBLEORNULLLIST_TYPE = AttributeTypeFactory
04936:                    .newAttributeType("doubleOrNullList",
04937:                            java.lang.Object.class);
04938:
04939:            /**
04940:             * <p>
04941:             *  <pre>
04942:             *   <code>
04943:             *  &lt;simpleType name="SignType"&gt;
04944:             *      &lt;annotation&gt;
04945:             *          &lt;documentation&gt;Utility type used in various places
04946:             *        - e.g. to indicate the direction of topological objects;
04947:             *        "+" for forwards, or "-" for backwards.&lt;/documentation&gt;
04948:             *      &lt;/annotation&gt;
04949:             *      &lt;restriction base="string"&gt;
04950:             *          &lt;enumeration value="-"/&gt;
04951:             *          &lt;enumeration value="+"/&gt;
04952:             *      &lt;/restriction&gt;
04953:             *  &lt;/simpleType&gt;
04954:             *
04955:             *    </code>
04956:             *   </pre>
04957:             * </p>
04958:             *
04959:             * @generated
04960:             */
04961:            public static final AttributeType SIGNTYPE_TYPE = AttributeTypeFactory
04962:                    .newAttributeType("SignType", java.lang.Object.class);
04963:
04964:            /**
04965:             * <p>
04966:             *  <pre>
04967:             *   <code>
04968:             *  &lt;complexType name="ValueArrayType"&gt;
04969:             *      &lt;annotation&gt;
04970:             *          &lt;documentation&gt;A Value Array is used for homogeneous arrays of primitive and aggregate values.  The member values may be scalars, composites, arrays or lists.  ValueArray has the same content model as CompositeValue, but the member values must be homogeneous.  The element declaration contains a Schematron constraint which expresses this restriction precisely.            Since the members are homogeneous, the referenceSystem (uom, codeSpace) may be specified on the ValueArray itself and implicitly inherited by all the members if desired.    Note that a_ScalarValueList is preferred for arrays of Scalar Values since this is a more efficient encoding.&lt;/documentation&gt;
04971:             *      &lt;/annotation&gt;
04972:             *      &lt;complexContent&gt;
04973:             *          &lt;extension base="gml:CompositeValueType"&gt;
04974:             *              &lt;attributeGroup ref="gml:referenceSystem"/&gt;
04975:             *          &lt;/extension&gt;
04976:             *      &lt;/complexContent&gt;
04977:             *  &lt;/complexType&gt;
04978:             *
04979:             *    </code>
04980:             *   </pre>
04981:             * </p>
04982:             *
04983:             * @generated
04984:             */
04985:            public static final AttributeType VALUEARRAYTYPE_TYPE = AttributeTypeFactory
04986:                    .newAttributeType("ValueArrayType", java.lang.Object.class);
04987:
04988:            /**
04989:             * <p>
04990:             *  <pre>
04991:             *   <code>
04992:             *  &lt;complexType name="TimeInstantPropertyType"&gt;
04993:             *      &lt;sequence minOccurs="0"&gt;
04994:             *          &lt;element ref="gml:TimeInstant"/&gt;
04995:             *      &lt;/sequence&gt;
04996:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
04997:             *  &lt;/complexType&gt;
04998:             *
04999:             *    </code>
05000:             *   </pre>
05001:             * </p>
05002:             *
05003:             * @generated
05004:             */
05005:            public static final AttributeType TIMEINSTANTPROPERTYTYPE_TYPE = AttributeTypeFactory
05006:                    .newAttributeType("TimeInstantPropertyType",
05007:                            java.lang.Object.class);
05008:
05009:            /**
05010:             * <p>
05011:             *  <pre>
05012:             *   <code>
05013:             *  &lt;complexType abstract="true" name="AbstractDiscreteCoverageType"&gt;
05014:             *      &lt;annotation&gt;
05015:             *          &lt;documentation&gt;A discrete coverage consists of a domain set, range set and optionally a coverage function. The domain set consists of either geometry or temporal objects, finite in number. The range set is comprised of a finite number of attribute values each of which is associated to every direct position within any single spatiotemporal object in the domain. In other words, the range values are constant on each spatiotemporal object in the domain. This coverage function maps each element from the coverage domain to an element in its range. This definition conforms to ISO 19123.&lt;/documentation&gt;
05016:             *      &lt;/annotation&gt;
05017:             *      &lt;complexContent&gt;
05018:             *          &lt;extension base="gml:AbstractCoverageType"&gt;
05019:             *              &lt;sequence&gt;
05020:             *                  &lt;element minOccurs="0" ref="gml:coverageFunction"/&gt;
05021:             *              &lt;/sequence&gt;
05022:             *          &lt;/extension&gt;
05023:             *      &lt;/complexContent&gt;
05024:             *  &lt;/complexType&gt;
05025:             *
05026:             *    </code>
05027:             *   </pre>
05028:             * </p>
05029:             *
05030:             * @generated
05031:             */
05032:            public static final AttributeType ABSTRACTDISCRETECOVERAGETYPE_TYPE = AttributeTypeFactory
05033:                    .newAttributeType("AbstractDiscreteCoverageType",
05034:                            java.lang.Object.class);
05035:
05036:            /**
05037:             * <p>
05038:             *  <pre>
05039:             *   <code>
05040:             *  &lt;complexType abstract="true" name="AbstractGeneralTransformationType"&gt;
05041:             *      &lt;annotation&gt;
05042:             *          &lt;documentation&gt;An abstract operation on coordinates that usually includes a change of Datum. The parameters of a coordinate transformation are empirically derived from data containing the coordinates of a series of points in both coordinate reference systems. This computational process is usually "over-determined", allowing derivation of error (or accuracy) estimates for the transformation. Also, the stochastic nature of the parameters may result in multiple (different) versions of the same coordinate transformation.
05043:             *
05044:             *  This abstract complexType is expected to be extended for well-known operation methods with many Transformation instances, in Application Schemas that define operation-method-specialized value element names and contents. This transformation uses an operation method with associated parameter values. However, operation methods and parameter values are directly associated with concrete subtypes, not with this abstract type. All concrete types derived from this type shall extend this type to include a "usesMethod" element that references one "OperationMethod" element. Similarly, all concrete types derived from this type shall extend this type to include one or more elements each named "uses...Value" that each use the type of an element substitutable for the "_generalParameterValue" element. &lt;/documentation&gt;
05045:             *      &lt;/annotation&gt;
05046:             *      &lt;complexContent&gt;
05047:             *          &lt;restriction base="gml:AbstractCoordinateOperationType"&gt;
05048:             *              &lt;sequence&gt;
05049:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
05050:             *                  &lt;element ref="gml:coordinateOperationName"/&gt;
05051:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:coordinateOperationID"/&gt;
05052:             *                  &lt;element minOccurs="0" ref="gml:remarks"/&gt;
05053:             *                  &lt;element ref="gml:operationVersion"/&gt;
05054:             *                  &lt;element minOccurs="0" ref="gml:validArea"/&gt;
05055:             *                  &lt;element minOccurs="0" ref="gml:scope"/&gt;
05056:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_positionalAccuracy"/&gt;
05057:             *                  &lt;element ref="gml:sourceCRS"/&gt;
05058:             *                  &lt;element ref="gml:targetCRS"/&gt;
05059:             *              &lt;/sequence&gt;
05060:             *              &lt;attribute ref="gml:id" use="required"/&gt;
05061:             *          &lt;/restriction&gt;
05062:             *      &lt;/complexContent&gt;
05063:             *  &lt;/complexType&gt;
05064:             *
05065:             *    </code>
05066:             *   </pre>
05067:             * </p>
05068:             *
05069:             * @generated
05070:             */
05071:            public static final AttributeType ABSTRACTGENERALTRANSFORMATIONTYPE_TYPE = AttributeTypeFactory
05072:                    .newAttributeType("AbstractGeneralTransformationType",
05073:                            java.lang.Object.class);
05074:
05075:            /**
05076:             * <p>
05077:             *  <pre>
05078:             *   <code>
05079:             *  &lt;complexType name="TopoCurveType"&gt;
05080:             *      &lt;annotation&gt;
05081:             *          &lt;documentation&gt;The end Node of each directedEdge of a TopoCurveType
05082:             *  is the start Node of the next directedEdge of the TopoCurveType in document order.  The TopoCurve type and element represent a homogeneous topological expression, a list of directed edges, which if realised are isomorphic to a geometric curve primitive. The intended use of TopoCurve is to appear within a line feature instance to express the structural and geometric relationships of this line to other features via the shared edge definitions.&lt;/documentation&gt;
05083:             *      &lt;/annotation&gt;
05084:             *      &lt;complexContent&gt;
05085:             *          &lt;extension base="gml:AbstractTopologyType"&gt;
05086:             *              &lt;sequence&gt;
05087:             *                  &lt;element maxOccurs="unbounded" ref="gml:directedEdge"/&gt;
05088:             *              &lt;/sequence&gt;
05089:             *          &lt;/extension&gt;
05090:             *      &lt;/complexContent&gt;
05091:             *  &lt;/complexType&gt;
05092:             *
05093:             *    </code>
05094:             *   </pre>
05095:             * </p>
05096:             *
05097:             * @generated
05098:             */
05099:            public static final AttributeType TOPOCURVETYPE_TYPE = AttributeTypeFactory
05100:                    .newAttributeType("TopoCurveType", java.lang.Object.class);
05101:
05102:            /**
05103:             * <p>
05104:             *  <pre>
05105:             *   <code>
05106:             *  &lt;complexType name="OrientableCurveType"&gt;
05107:             *      &lt;annotation&gt;
05108:             *          &lt;documentation&gt;OrientableCurve consists of a curve and an orientation. If the orientation is "+", then the OrientableCurve is identical to the baseCurve. If the orientation is "-", then the OrientableCurve is related to another _Curve with a parameterization that reverses the sense of the curve traversal.&lt;/documentation&gt;
05109:             *      &lt;/annotation&gt;
05110:             *      &lt;complexContent&gt;
05111:             *          &lt;extension base="gml:AbstractCurveType"&gt;
05112:             *              &lt;sequence&gt;
05113:             *                  &lt;element ref="gml:baseCurve"&gt;
05114:             *                      &lt;annotation&gt;
05115:             *                          &lt;documentation&gt;References or contains the base curve (positive orientation).
05116:             *  NOTE: This definition allows for a nested structure, i.e. an OrientableCurve may use another OrientableCurve as its base curve.&lt;/documentation&gt;
05117:             *                      &lt;/annotation&gt;
05118:             *                  &lt;/element&gt;
05119:             *              &lt;/sequence&gt;
05120:             *              &lt;attribute default="+" name="orientation" type="gml:SignType"&gt;
05121:             *                  &lt;annotation&gt;
05122:             *                      &lt;documentation&gt;If the orientation is "+", then the OrientableCurve is identical to the baseCurve. If the orientation is "-", then the OrientableCurve is related to another _Curve with a parameterization that reverses the sense of the curve traversal. "+" is the default value.&lt;/documentation&gt;
05123:             *                  &lt;/annotation&gt;
05124:             *              &lt;/attribute&gt;
05125:             *          &lt;/extension&gt;
05126:             *      &lt;/complexContent&gt;
05127:             *  &lt;/complexType&gt;
05128:             *
05129:             *    </code>
05130:             *   </pre>
05131:             * </p>
05132:             *
05133:             * @generated
05134:             */
05135:            public static final AttributeType ORIENTABLECURVETYPE_TYPE = AttributeTypeFactory
05136:                    .newAttributeType("OrientableCurveType",
05137:                            java.lang.Object.class);
05138:
05139:            /**
05140:             * <p>
05141:             *  <pre>
05142:             *   <code>
05143:             *  &lt;complexType name="LineStringPropertyType"&gt;
05144:             *      &lt;annotation&gt;
05145:             *          &lt;documentation&gt;This type is deprecated with GML 3 and shall not be used. It is included for backwards compatibility with GML 2. Use
05146:             *                          CurvePropertyType instead. A property that has a line string as its value domain can either be an appropriate geometry element encapsulated
05147:             *                          in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere
05148:             *                          in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
05149:             *      &lt;/annotation&gt;
05150:             *      &lt;sequence minOccurs="0"&gt;
05151:             *          &lt;element ref="gml:LineString"/&gt;
05152:             *      &lt;/sequence&gt;
05153:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
05154:             *          &lt;annotation&gt;
05155:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources
05156:             *                                  (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes.
05157:             *                                  The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to
05158:             *                                  be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
05159:             *                                  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by
05160:             *                                  including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
05161:             *          &lt;/annotation&gt;
05162:             *      &lt;/attributeGroup&gt;
05163:             *  &lt;/complexType&gt;
05164:             *
05165:             *    </code>
05166:             *   </pre>
05167:             * </p>
05168:             *
05169:             * @generated
05170:             */
05171:            public static final AttributeType LINESTRINGPROPERTYTYPE_TYPE = AttributeTypeFactory
05172:                    .newAttributeType("LineStringPropertyType",
05173:                            LineString.class);
05174:
05175:            /**
05176:             * <p>
05177:             *  <pre>
05178:             *   <code>
05179:             *  &lt;complexType name="PolarCSType"&gt;
05180:             *      &lt;annotation&gt;
05181:             *          &lt;documentation&gt;A two-dimensional coordinate system in which position is specified by the distance from the origin and the angle between the line from the origin to a point and a reference direction. A PolarCS shall have two usesAxis associations. &lt;/documentation&gt;
05182:             *      &lt;/annotation&gt;
05183:             *      &lt;complexContent&gt;
05184:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
05185:             *      &lt;/complexContent&gt;
05186:             *  &lt;/complexType&gt;
05187:             *
05188:             *    </code>
05189:             *   </pre>
05190:             * </p>
05191:             *
05192:             * @generated
05193:             */
05194:            public static final AttributeType POLARCSTYPE_TYPE = AttributeTypeFactory
05195:                    .newAttributeType("PolarCSType", java.lang.Object.class);
05196:
05197:            /**
05198:             * <p>
05199:             *  <pre>
05200:             *   <code>
05201:             *  &lt;complexType name="AffinePlacementType"&gt;
05202:             *      &lt;annotation&gt;
05203:             *          &lt;documentation&gt;A placement takes a standard geometric
05204:             *     construction and places it in geographic space. It defines a
05205:             *     transformation from a constructive parameter space to the
05206:             *     co-ordinate space of the co-ordinate reference system being used.
05207:             *     Parameter spaces in formulae in this International Standard are
05208:             *     given as (u, v) in 2D and(u, v, w) in 3D. Co-ordinate reference
05209:             *     systems positions are given in formulae, in this International
05210:             *     Standard, by either (x, y) in 2D, or (x, y, z) in 3D.
05211:             *
05212:             *     Affine placements are defined by linear transformations from
05213:             *     parameter space to the target co-ordiante space. 2-dimensional
05214:             *     Cartesian parameter space,(u,v) transforms into 3-dimensional co-
05215:             *     ordinate reference systems,(x,y,z) by using an affine
05216:             *     transformation,(u,v)-&gt;(x,y,z) which is defined :
05217:             *
05218:             *          x        ux vx          x0
05219:             *                           u
05220:             *          y =        uy vy   + y0
05221:             *                           v
05222:             *          x        uz vz        z0
05223:             *
05224:             *     Then, given this equation, the location element of the
05225:             *     AffinePlacement is the direct position (x0, y0, z0), which is the
05226:             *     target position of the origin in (u, v). The two reference
05227:             *     directions (ux, uy, uz) and (vx, vy, vz) are the target
05228:             *     directions of the unit vectors at the origin in (u, v).&lt;/documentation&gt;
05229:             *      &lt;/annotation&gt;
05230:             *      &lt;sequence&gt;
05231:             *          &lt;element name="location" type="gml:DirectPositionType"&gt;
05232:             *              &lt;annotation&gt;
05233:             *                  &lt;documentation&gt;The location property gives
05234:             *       the target of the parameter space origin. This is the vector
05235:             *      (x0, y0, z0) in the formulae above.&lt;/documentation&gt;
05236:             *              &lt;/annotation&gt;
05237:             *          &lt;/element&gt;
05238:             *          &lt;element maxOccurs="unbounded" name="refDirection" type="gml:VectorType"&gt;
05239:             *              &lt;annotation&gt;
05240:             *                  &lt;documentation&gt;The attribute refDirection gives the
05241:             *  target directions for the co-ordinate basis vectors of the
05242:             *  parameter space. These are the columns of the matrix in the
05243:             *  formulae given above. The number of directions given shall be
05244:             *  inDimension. The dimension of the directions shall be
05245:             *  outDimension.&lt;/documentation&gt;
05246:             *              &lt;/annotation&gt;
05247:             *          &lt;/element&gt;
05248:             *          &lt;element name="inDimension" type="positiveInteger"&gt;
05249:             *              &lt;annotation&gt;
05250:             *                  &lt;documentation&gt;Dimension of the constructive parameter
05251:             *       space.&lt;/documentation&gt;
05252:             *              &lt;/annotation&gt;
05253:             *          &lt;/element&gt;
05254:             *          &lt;element name="outDimension" type="positiveInteger"&gt;
05255:             *              &lt;annotation&gt;
05256:             *                  &lt;documentation&gt;Dimension of the co-ordinate space.&lt;/documentation&gt;
05257:             *              &lt;/annotation&gt;
05258:             *          &lt;/element&gt;
05259:             *      &lt;/sequence&gt;
05260:             *  &lt;/complexType&gt;
05261:             *
05262:             *    </code>
05263:             *   </pre>
05264:             * </p>
05265:             *
05266:             * @generated
05267:             */
05268:            public static final AttributeType AFFINEPLACEMENTTYPE_TYPE = AttributeTypeFactory
05269:                    .newAttributeType("AffinePlacementType",
05270:                            java.lang.Object.class);
05271:
05272:            /**
05273:             * <p>
05274:             *  <pre>
05275:             *   <code>
05276:             *  &lt;complexType name="CategoryExtentType"&gt;
05277:             *      &lt;annotation&gt;
05278:             *          &lt;documentation&gt;Restriction of list type to store a 2-point range of ordinal values. If one member is a null, then this is a single ended interval.&lt;/documentation&gt;
05279:             *      &lt;/annotation&gt;
05280:             *      &lt;simpleContent&gt;
05281:             *          &lt;restriction base="gml:CodeOrNullListType"&gt;
05282:             *              &lt;length value="2"/&gt;
05283:             *          &lt;/restriction&gt;
05284:             *      &lt;/simpleContent&gt;
05285:             *  &lt;/complexType&gt;
05286:             *
05287:             *    </code>
05288:             *   </pre>
05289:             * </p>
05290:             *
05291:             * @generated
05292:             */
05293:            public static final AttributeType CATEGORYEXTENTTYPE_TYPE = AttributeTypeFactory
05294:                    .newAttributeType("CategoryExtentType",
05295:                            java.lang.Object.class);
05296:
05297:            /**
05298:             * <p>
05299:             *  <pre>
05300:             *   <code>
05301:             *  &lt;complexType name="EngineeringDatumRefType"&gt;
05302:             *      &lt;annotation&gt;
05303:             *          &lt;documentation&gt;Association to an engineering datum, either referencing or containing the definition of that datum. &lt;/documentation&gt;
05304:             *      &lt;/annotation&gt;
05305:             *      &lt;sequence minOccurs="0"&gt;
05306:             *          &lt;element ref="gml:EngineeringDatum"/&gt;
05307:             *      &lt;/sequence&gt;
05308:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
05309:             *  &lt;/complexType&gt;
05310:             *
05311:             *    </code>
05312:             *   </pre>
05313:             * </p>
05314:             *
05315:             * @generated
05316:             */
05317:            public static final AttributeType ENGINEERINGDATUMREFTYPE_TYPE = AttributeTypeFactory
05318:                    .newAttributeType("EngineeringDatumRefType",
05319:                            java.lang.Object.class);
05320:
05321:            /**
05322:             * <p>
05323:             *  <pre>
05324:             *   <code>
05325:             *  &lt;complexType name="TimePeriodPropertyType"&gt;
05326:             *      &lt;sequence minOccurs="0"&gt;
05327:             *          &lt;element ref="gml:TimePeriod"/&gt;
05328:             *      &lt;/sequence&gt;
05329:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
05330:             *  &lt;/complexType&gt;
05331:             *
05332:             *    </code>
05333:             *   </pre>
05334:             * </p>
05335:             *
05336:             * @generated
05337:             */
05338:            public static final AttributeType TIMEPERIODPROPERTYTYPE_TYPE = AttributeTypeFactory
05339:                    .newAttributeType("TimePeriodPropertyType",
05340:                            java.lang.Object.class);
05341:
05342:            /**
05343:             * <p>
05344:             *  <pre>
05345:             *   <code>
05346:             *  &lt;complexType name="ConcatenatedOperationType"&gt;
05347:             *      &lt;annotation&gt;
05348:             *          &lt;documentation&gt;An ordered sequence of two or more single coordinate operations. The sequence of operations is constrained by the requirement that the source coordinate reference system of step (n+1) must be the same as the target coordinate reference system of step (n). The source coordinate reference system of the first step and the target coordinate reference system of the last step are the source and target coordinate reference system associated with the concatenated operation. Instead of a forward operation, an inverse operation may be used for one or more of the operation steps mentioned above, if the inverse operation is uniquely defined by the forward operation.&lt;/documentation&gt;
05349:             *      &lt;/annotation&gt;
05350:             *      &lt;complexContent&gt;
05351:             *          &lt;extension base="gml:AbstractCoordinateOperationType"&gt;
05352:             *              &lt;sequence&gt;
05353:             *                  &lt;element maxOccurs="unbounded" minOccurs="2" ref="gml:usesSingleOperation"&gt;
05354:             *                      &lt;annotation&gt;
05355:             *                          &lt;documentation&gt;Ordered sequence of associations to the two or more single operations used by this concatenated operation. &lt;/documentation&gt;
05356:             *                      &lt;/annotation&gt;
05357:             *                  &lt;/element&gt;
05358:             *              &lt;/sequence&gt;
05359:             *          &lt;/extension&gt;
05360:             *      &lt;/complexContent&gt;
05361:             *  &lt;/complexType&gt;
05362:             *
05363:             *    </code>
05364:             *   </pre>
05365:             * </p>
05366:             *
05367:             * @generated
05368:             */
05369:            public static final AttributeType CONCATENATEDOPERATIONTYPE_TYPE = AttributeTypeFactory
05370:                    .newAttributeType("ConcatenatedOperationType",
05371:                            java.lang.Object.class);
05372:
05373:            /**
05374:             * <p>
05375:             *  <pre>
05376:             *   <code>
05377:             *  &lt;complexType abstract="true" name="AbstractCurveType"&gt;
05378:             *      &lt;annotation&gt;
05379:             *          &lt;documentation&gt;An abstraction of a curve to support the different levels of complexity. The curve can always be viewed as a geometric
05380:             *                          primitive, i.e. is continuous.&lt;/documentation&gt;
05381:             *      &lt;/annotation&gt;
05382:             *      &lt;complexContent&gt;
05383:             *          &lt;extension base="gml:AbstractGeometricPrimitiveType"/&gt;
05384:             *      &lt;/complexContent&gt;
05385:             *  &lt;/complexType&gt;
05386:             *
05387:             *    </code>
05388:             *   </pre>
05389:             * </p>
05390:             *
05391:             * @generated
05392:             */
05393:            public static final AttributeType ABSTRACTCURVETYPE_TYPE = AttributeTypeFactory
05394:                    .newAttributeType("AbstractCurveType",
05395:                            java.lang.Object.class);
05396:
05397:            /**
05398:             * <p>
05399:             *  <pre>
05400:             *   <code>
05401:             *  &lt;complexType name="GeodesicStringType"&gt;
05402:             *      &lt;annotation&gt;
05403:             *          &lt;documentation&gt;A GeodesicString consists of sequence of
05404:             *     geodesic segments. The type essentially combines a sequence of
05405:             *     Geodesic into a single object.
05406:             *     The GeodesicString is computed from two or more positions and an
05407:             *     interpolation using geodesics defined from the geoid (or
05408:             *     ellipsoid) of the co-ordinate reference system being used.&lt;/documentation&gt;
05409:             *      &lt;/annotation&gt;
05410:             *      &lt;complexContent&gt;
05411:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
05412:             *              &lt;choice&gt;
05413:             *                  &lt;element ref="gml:posList"/&gt;
05414:             *                  &lt;group maxOccurs="unbounded" minOccurs="2" ref="gml:geometricPositionGroup"/&gt;
05415:             *              &lt;/choice&gt;
05416:             *              &lt;attribute fixed="geodesic" name="interpolation" type="gml:CurveInterpolationType"&gt;
05417:             *                  &lt;annotation&gt;
05418:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the
05419:             *       curve interpolation mechanism used for this segment. This
05420:             *       mechanism uses the control points and control parameters to
05421:             *       determine the position of this curve segment. For an
05422:             *       GeodesicString the interpolation is fixed as "geodesic".&lt;/documentation&gt;
05423:             *                  &lt;/annotation&gt;
05424:             *              &lt;/attribute&gt;
05425:             *          &lt;/extension&gt;
05426:             *      &lt;/complexContent&gt;
05427:             *  &lt;/complexType&gt;
05428:             *
05429:             *    </code>
05430:             *   </pre>
05431:             * </p>
05432:             *
05433:             * @generated
05434:             */
05435:            public static final AttributeType GEODESICSTRINGTYPE_TYPE = AttributeTypeFactory
05436:                    .newAttributeType("GeodesicStringType",
05437:                            java.lang.Object.class);
05438:
05439:            /**
05440:             * <p>
05441:             *  <pre>
05442:             *   <code>
05443:             *  &lt;complexType name="SphericalCSType"&gt;
05444:             *      &lt;annotation&gt;
05445:             *          &lt;documentation&gt;A three-dimensional coordinate system with one distance measured from the origin and two angular coordinates. Not to be confused with an ellipsoidal coordinate system based on an ellipsoid "degenerated" into a sphere. A SphericalCS shall have three usesAxis associations. &lt;/documentation&gt;
05446:             *      &lt;/annotation&gt;
05447:             *      &lt;complexContent&gt;
05448:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
05449:             *      &lt;/complexContent&gt;
05450:             *  &lt;/complexType&gt;
05451:             *
05452:             *    </code>
05453:             *   </pre>
05454:             * </p>
05455:             *
05456:             * @generated
05457:             */
05458:            public static final AttributeType SPHERICALCSTYPE_TYPE = AttributeTypeFactory
05459:                    .newAttributeType("SphericalCSType", java.lang.Object.class);
05460:
05461:            /**
05462:             * <p>
05463:             *  <pre>
05464:             *   <code>
05465:             *  &lt;complexType abstract="true" name="AbstractGeometricPrimitiveType"&gt;
05466:             *      &lt;annotation&gt;
05467:             *          &lt;documentation&gt;This is the abstract root type of the geometric primitives. A geometric primitive is a geometric object that is not
05468:             *                          decomposed further into other primitives in the system. All primitives are oriented in the direction implied by the sequence of their
05469:             *                          coordinate tuples.&lt;/documentation&gt;
05470:             *      &lt;/annotation&gt;
05471:             *      &lt;complexContent&gt;
05472:             *          &lt;extension base="gml:AbstractGeometryType"/&gt;
05473:             *      &lt;/complexContent&gt;
05474:             *  &lt;/complexType&gt;
05475:             *
05476:             *    </code>
05477:             *   </pre>
05478:             * </p>
05479:             *
05480:             * @generated
05481:             */
05482:            public static final AttributeType ABSTRACTGEOMETRICPRIMITIVETYPE_TYPE = AttributeTypeFactory
05483:                    .newAttributeType("AbstractGeometricPrimitiveType",
05484:                            java.lang.Object.class);
05485:
05486:            /**
05487:             * <p>
05488:             *  <pre>
05489:             *   <code>
05490:             *  &lt;complexType abstract="true" name="AbstractTimePrimitiveType"&gt;
05491:             *      &lt;annotation&gt;
05492:             *          &lt;documentation xml:lang="en"&gt;The abstract supertype for temporal primitives.&lt;/documentation&gt;
05493:             *      &lt;/annotation&gt;
05494:             *      &lt;complexContent&gt;
05495:             *          &lt;extension base="gml:AbstractTimeObjectType"&gt;
05496:             *              &lt;sequence&gt;
05497:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
05498:             *                      name="relatedTime" type="gml:RelatedTimeType"/&gt;
05499:             *              &lt;/sequence&gt;
05500:             *          &lt;/extension&gt;
05501:             *      &lt;/complexContent&gt;
05502:             *  &lt;/complexType&gt;
05503:             *
05504:             *    </code>
05505:             *   </pre>
05506:             * </p>
05507:             *
05508:             * @generated
05509:             */
05510:            public static final AttributeType ABSTRACTTIMEPRIMITIVETYPE_TYPE = AttributeTypeFactory
05511:                    .newAttributeType("AbstractTimePrimitiveType",
05512:                            java.lang.Object.class);
05513:
05514:            /**
05515:             * <p>
05516:             *  <pre>
05517:             *   <code>
05518:             *  &lt;complexType name="GeometricComplexType"&gt;
05519:             *      &lt;annotation&gt;
05520:             *          &lt;documentation&gt;A geometric complex.&lt;/documentation&gt;
05521:             *      &lt;/annotation&gt;
05522:             *      &lt;complexContent&gt;
05523:             *          &lt;extension base="gml:AbstractGeometryType"&gt;
05524:             *              &lt;sequence&gt;
05525:             *                  &lt;element maxOccurs="unbounded" name="element" type="gml:GeometricPrimitivePropertyType"/&gt;
05526:             *              &lt;/sequence&gt;
05527:             *          &lt;/extension&gt;
05528:             *      &lt;/complexContent&gt;
05529:             *  &lt;/complexType&gt;
05530:             *
05531:             *    </code>
05532:             *   </pre>
05533:             * </p>
05534:             *
05535:             * @generated
05536:             */
05537:            public static final AttributeType GEOMETRICCOMPLEXTYPE_TYPE = AttributeTypeFactory
05538:                    .newAttributeType("GeometricComplexType",
05539:                            java.lang.Object.class);
05540:
05541:            /**
05542:             * <p>
05543:             *  <pre>
05544:             *   <code>
05545:             *  &lt;complexType name="PolygonType"&gt;
05546:             *      &lt;annotation&gt;
05547:             *          &lt;documentation&gt;A Polygon is a special surface that is defined by a single surface patch. The boundary of this patch is coplanar and the polygon uses planar interpolation in its interior. It is backwards compatible with the Polygon of GML 2, GM_Polygon of ISO 19107 is implemented by PolygonPatch.&lt;/documentation&gt;
05548:             *      &lt;/annotation&gt;
05549:             *      &lt;complexContent&gt;
05550:             *          &lt;extension base="gml:AbstractSurfaceType"&gt;
05551:             *              &lt;sequence&gt;
05552:             *                  &lt;element minOccurs="0" ref="gml:exterior"/&gt;
05553:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:interior"/&gt;
05554:             *              &lt;/sequence&gt;
05555:             *          &lt;/extension&gt;
05556:             *      &lt;/complexContent&gt;
05557:             *  &lt;/complexType&gt;
05558:             *
05559:             *    </code>
05560:             *   </pre>
05561:             * </p>
05562:             *
05563:             * @generated
05564:             */
05565:            public static final AttributeType POLYGONTYPE_TYPE = AttributeTypeFactory
05566:                    .newAttributeType("PolygonType", Polygon.class);
05567:
05568:            /**
05569:             * <p>
05570:             *  <pre>
05571:             *   <code>
05572:             *  &lt;complexType abstract="true" name="EllipsoidBaseType"&gt;
05573:             *      &lt;annotation&gt;
05574:             *          &lt;documentation&gt;Basic encoding for ellipsoid objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
05575:             *      &lt;/annotation&gt;
05576:             *      &lt;complexContent&gt;
05577:             *          &lt;restriction base="gml:DefinitionType"&gt;
05578:             *              &lt;sequence&gt;
05579:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
05580:             *                  &lt;element ref="gml:ellipsoidName"/&gt;
05581:             *              &lt;/sequence&gt;
05582:             *              &lt;attribute ref="gml:id" use="required"/&gt;
05583:             *          &lt;/restriction&gt;
05584:             *      &lt;/complexContent&gt;
05585:             *  &lt;/complexType&gt;
05586:             *
05587:             *    </code>
05588:             *   </pre>
05589:             * </p>
05590:             *
05591:             * @generated
05592:             */
05593:            public static final AttributeType ELLIPSOIDBASETYPE_TYPE = AttributeTypeFactory
05594:                    .newAttributeType("EllipsoidBaseType",
05595:                            java.lang.Object.class);
05596:
05597:            /**
05598:             * <p>
05599:             *  <pre>
05600:             *   <code>
05601:             *  &lt;complexType name="ScalarValuePropertyType"&gt;
05602:             *      &lt;annotation&gt;
05603:             *          &lt;documentation&gt;Property whose content is a scalar value.&lt;/documentation&gt;
05604:             *      &lt;/annotation&gt;
05605:             *      &lt;complexContent&gt;
05606:             *          &lt;restriction base="gml:ValuePropertyType"&gt;
05607:             *              &lt;sequence minOccurs="0"&gt;
05608:             *                  &lt;!-- &lt;element ref="gml:_ScalarValue"/&gt; --&gt;
05609:             *                  &lt;group ref="gml:ScalarValue"/&gt;
05610:             *              &lt;/sequence&gt;
05611:             *          &lt;/restriction&gt;
05612:             *      &lt;/complexContent&gt;
05613:             *  &lt;/complexType&gt;
05614:             *
05615:             *    </code>
05616:             *   </pre>
05617:             * </p>
05618:             *
05619:             * @generated
05620:             */
05621:            public static final AttributeType SCALARVALUEPROPERTYTYPE_TYPE = AttributeTypeFactory
05622:                    .newAttributeType("ScalarValuePropertyType",
05623:                            java.lang.Object.class);
05624:
05625:            /**
05626:             * <p>
05627:             *  <pre>
05628:             *   <code>
05629:             *  &lt;complexType abstract="true" name="AbstractFeatureCollectionType"&gt;
05630:             *      &lt;annotation&gt;
05631:             *          &lt;documentation&gt;A feature collection contains zero or more features.&lt;/documentation&gt;
05632:             *      &lt;/annotation&gt;
05633:             *      &lt;complexContent&gt;
05634:             *          &lt;extension base="gml:AbstractFeatureType"&gt;
05635:             *              &lt;sequence&gt;
05636:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:featureMember"/&gt;
05637:             *                  &lt;element minOccurs="0" ref="gml:featureMembers"/&gt;
05638:             *              &lt;/sequence&gt;
05639:             *          &lt;/extension&gt;
05640:             *      &lt;/complexContent&gt;
05641:             *  &lt;/complexType&gt;
05642:             *
05643:             *    </code>
05644:             *   </pre>
05645:             * </p>
05646:             *
05647:             * @generated
05648:             */
05649:            public static final AttributeType ABSTRACTFEATURECOLLECTIONTYPE_TYPE = AttributeTypeFactory
05650:                    .newAttributeType("AbstractFeatureCollectionType",
05651:                            FeatureCollection.class);
05652:
05653:            /**
05654:             * <p>
05655:             *  <pre>
05656:             *   <code>
05657:             *  &lt;complexType name="GeometryPropertyType"&gt;
05658:             *      &lt;annotation&gt;
05659:             *          &lt;documentation&gt;A geometric property can either be any geometry element encapsulated in an element of this type or an XLink reference
05660:             *                          to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Note that either
05661:             *                          the reference or the contained element must be given, but not both or none.&lt;/documentation&gt;
05662:             *      &lt;/annotation&gt;
05663:             *      &lt;sequence minOccurs="0"&gt;
05664:             *          &lt;element ref="gml:_Geometry"/&gt;
05665:             *      &lt;/sequence&gt;
05666:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
05667:             *          &lt;annotation&gt;
05668:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference
05669:             *                                  remote resources (including those elsewhere in the same document). A simple link element can be constructed by
05670:             *                                  including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation
05671:             *                                  of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create
05672:             *                                  sophisticated links between resources; such links can be used to reference remote properties. A simple link element
05673:             *                                  can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by
05674:             *                                  including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
05675:             *          &lt;/annotation&gt;
05676:             *      &lt;/attributeGroup&gt;
05677:             *  &lt;/complexType&gt;
05678:             *
05679:             *    </code>
05680:             *   </pre>
05681:             * </p>
05682:             *
05683:             * @generated
05684:             */
05685:            public static final AttributeType GEOMETRYPROPERTYTYPE_TYPE = AttributeTypeFactory
05686:                    .newAttributeType("GeometryPropertyType", Geometry.class);
05687:
05688:            /**
05689:             * <p>
05690:             *  <pre>
05691:             *   <code>
05692:             *  &lt;complexType name="EngineeringCRSType"&gt;
05693:             *      &lt;annotation&gt;
05694:             *          &lt;documentation&gt;A contextually local coordinate reference system; which can be divided into two broad categories:
05695:             *  - earth-fixed systems applied to engineering activities on or near the surface of the earth;
05696:             *  - CRSs on moving platforms such as road vehicles, vessels, aircraft, or spacecraft.
05697:             *  For further information, see OGC Abstract Specification Topic 2. &lt;/documentation&gt;
05698:             *      &lt;/annotation&gt;
05699:             *      &lt;complexContent&gt;
05700:             *          &lt;extension base="gml:AbstractReferenceSystemType"&gt;
05701:             *              &lt;sequence&gt;
05702:             *                  &lt;element ref="gml:usesCS"/&gt;
05703:             *                  &lt;element ref="gml:usesEngineeringDatum"/&gt;
05704:             *              &lt;/sequence&gt;
05705:             *          &lt;/extension&gt;
05706:             *      &lt;/complexContent&gt;
05707:             *  &lt;/complexType&gt;
05708:             *
05709:             *    </code>
05710:             *   </pre>
05711:             * </p>
05712:             *
05713:             * @generated
05714:             */
05715:            public static final AttributeType ENGINEERINGCRSTYPE_TYPE = AttributeTypeFactory
05716:                    .newAttributeType("EngineeringCRSType",
05717:                            java.lang.Object.class);
05718:
05719:            /**
05720:             * <p>
05721:             *  <pre>
05722:             *   <code>
05723:             *  &lt;complexType name="DirectedNodePropertyType"&gt;
05724:             *      &lt;sequence minOccurs="0"&gt;
05725:             *          &lt;element ref="gml:Node"/&gt;
05726:             *      &lt;/sequence&gt;
05727:             *      &lt;attribute default="+" name="orientation" type="gml:SignType"/&gt;
05728:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
05729:             *  &lt;/complexType&gt;
05730:             *
05731:             *    </code>
05732:             *   </pre>
05733:             * </p>
05734:             *
05735:             * @generated
05736:             */
05737:            public static final AttributeType DIRECTEDNODEPROPERTYTYPE_TYPE = AttributeTypeFactory
05738:                    .newAttributeType("DirectedNodePropertyType",
05739:                            java.lang.Object.class);
05740:
05741:            /**
05742:             * <p>
05743:             *  <pre>
05744:             *   <code>
05745:             *  &lt;complexType name="LinearCSRefType"&gt;
05746:             *      &lt;annotation&gt;
05747:             *          &lt;documentation&gt;Association to a linear coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
05748:             *      &lt;/annotation&gt;
05749:             *      &lt;sequence minOccurs="0"&gt;
05750:             *          &lt;element ref="gml:LinearCS"/&gt;
05751:             *      &lt;/sequence&gt;
05752:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
05753:             *  &lt;/complexType&gt;
05754:             *
05755:             *    </code>
05756:             *   </pre>
05757:             * </p>
05758:             *
05759:             * @generated
05760:             */
05761:            public static final AttributeType LINEARCSREFTYPE_TYPE = AttributeTypeFactory
05762:                    .newAttributeType("LinearCSRefType", java.lang.Object.class);
05763:
05764:            /**
05765:             * <p>
05766:             *  <pre>
05767:             *   <code>
05768:             *  &lt;complexType name="TemporalCRSType"&gt;
05769:             *      &lt;annotation&gt;
05770:             *          &lt;documentation&gt;A 1D coordinate reference system used for the recording of time. &lt;/documentation&gt;
05771:             *      &lt;/annotation&gt;
05772:             *      &lt;complexContent&gt;
05773:             *          &lt;extension base="gml:AbstractReferenceSystemType"&gt;
05774:             *              &lt;sequence&gt;
05775:             *                  &lt;element ref="gml:usesTemporalCS"/&gt;
05776:             *                  &lt;element ref="gml:usesTemporalDatum"/&gt;
05777:             *              &lt;/sequence&gt;
05778:             *          &lt;/extension&gt;
05779:             *      &lt;/complexContent&gt;
05780:             *  &lt;/complexType&gt;
05781:             *
05782:             *    </code>
05783:             *   </pre>
05784:             * </p>
05785:             *
05786:             * @generated
05787:             */
05788:            public static final AttributeType TEMPORALCRSTYPE_TYPE = AttributeTypeFactory
05789:                    .newAttributeType("TemporalCRSType", java.lang.Object.class);
05790:
05791:            /**
05792:             * <p>
05793:             *  <pre>
05794:             *   <code>
05795:             *  &lt;complexType name="DirectedFacePropertyType"&gt;
05796:             *      &lt;sequence minOccurs="0"&gt;
05797:             *          &lt;element ref="gml:Face"/&gt;
05798:             *      &lt;/sequence&gt;
05799:             *      &lt;attribute default="+" name="orientation" type="gml:SignType"/&gt;
05800:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
05801:             *  &lt;/complexType&gt;
05802:             *
05803:             *    </code>
05804:             *   </pre>
05805:             * </p>
05806:             *
05807:             * @generated
05808:             */
05809:            public static final AttributeType DIRECTEDFACEPROPERTYTYPE_TYPE = AttributeTypeFactory
05810:                    .newAttributeType("DirectedFacePropertyType",
05811:                            java.lang.Object.class);
05812:
05813:            /**
05814:             * <p>
05815:             *  <pre>
05816:             *   <code>
05817:             *  &lt;complexType name="RectifiedGridType"&gt;
05818:             *      &lt;annotation&gt;
05819:             *          &lt;documentation&gt;A rectified grid has an origin and vectors that define its post locations.&lt;/documentation&gt;
05820:             *      &lt;/annotation&gt;
05821:             *      &lt;complexContent&gt;
05822:             *          &lt;extension base="gml:GridType"&gt;
05823:             *              &lt;sequence&gt;
05824:             *                  &lt;element name="origin" type="gml:PointPropertyType"/&gt;
05825:             *                  &lt;element maxOccurs="unbounded" name="offsetVector" type="gml:VectorType"/&gt;
05826:             *              &lt;/sequence&gt;
05827:             *          &lt;/extension&gt;
05828:             *      &lt;/complexContent&gt;
05829:             *  &lt;/complexType&gt;
05830:             *
05831:             *    </code>
05832:             *   </pre>
05833:             * </p>
05834:             *
05835:             * @generated
05836:             */
05837:            public static final AttributeType RECTIFIEDGRIDTYPE_TYPE = AttributeTypeFactory
05838:                    .newAttributeType("RectifiedGridType",
05839:                            java.lang.Object.class);
05840:
05841:            /**
05842:             * <p>
05843:             *  <pre>
05844:             *   <code>
05845:             *  &lt;complexType name="EnvelopeWithTimePeriodType"&gt;
05846:             *      &lt;annotation&gt;
05847:             *          &lt;documentation&gt;Envelope that includes also a temporal extent.&lt;/documentation&gt;
05848:             *      &lt;/annotation&gt;
05849:             *      &lt;complexContent&gt;
05850:             *          &lt;extension base="gml:EnvelopeType"&gt;
05851:             *              &lt;sequence&gt;
05852:             *                  &lt;element maxOccurs="2" minOccurs="2" ref="gml:timePosition"/&gt;
05853:             *              &lt;/sequence&gt;
05854:             *              &lt;attribute default="#ISO-8601" name="frame" type="anyURI" use="optional"/&gt;
05855:             *          &lt;/extension&gt;
05856:             *      &lt;/complexContent&gt;
05857:             *  &lt;/complexType&gt;
05858:             *
05859:             *    </code>
05860:             *   </pre>
05861:             * </p>
05862:             *
05863:             * @generated
05864:             */
05865:            public static final AttributeType ENVELOPEWITHTIMEPERIODTYPE_TYPE = AttributeTypeFactory
05866:                    .newAttributeType("EnvelopeWithTimePeriodType",
05867:                            java.lang.Object.class);
05868:
05869:            /**
05870:             * <p>
05871:             *  <pre>
05872:             *   <code>
05873:             *  &lt;complexType name="PrimeMeridianType"&gt;
05874:             *      &lt;annotation&gt;
05875:             *          &lt;documentation&gt;A prime meridian defines the origin from which longitude values are determined.&lt;/documentation&gt;
05876:             *      &lt;/annotation&gt;
05877:             *      &lt;complexContent&gt;
05878:             *          &lt;extension base="gml:PrimeMeridianBaseType"&gt;
05879:             *              &lt;sequence&gt;
05880:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:meridianID"&gt;
05881:             *                      &lt;annotation&gt;
05882:             *                          &lt;documentation&gt;Set of alternative identifications of this prime meridian. The first meridianID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
05883:             *                      &lt;/annotation&gt;
05884:             *                  &lt;/element&gt;
05885:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
05886:             *                      &lt;annotation&gt;
05887:             *                          &lt;documentation&gt;Comments on or information about this prime meridian, including source information. &lt;/documentation&gt;
05888:             *                      &lt;/annotation&gt;
05889:             *                  &lt;/element&gt;
05890:             *                  &lt;element ref="gml:greenwichLongitude"/&gt;
05891:             *              &lt;/sequence&gt;
05892:             *          &lt;/extension&gt;
05893:             *      &lt;/complexContent&gt;
05894:             *  &lt;/complexType&gt;
05895:             *
05896:             *    </code>
05897:             *   </pre>
05898:             * </p>
05899:             *
05900:             * @generated
05901:             */
05902:            public static final AttributeType PRIMEMERIDIANTYPE_TYPE = AttributeTypeFactory
05903:                    .newAttributeType("PrimeMeridianType",
05904:                            java.lang.Object.class);
05905:
05906:            /**
05907:             * <p>
05908:             *  <pre>
05909:             *   <code>
05910:             *  &lt;complexType name="SolidPropertyType"&gt;
05911:             *      &lt;annotation&gt;
05912:             *          &lt;documentation&gt;A property that has a solid as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
05913:             *      &lt;/annotation&gt;
05914:             *      &lt;sequence minOccurs="0"&gt;
05915:             *          &lt;element ref="gml:_Solid"/&gt;
05916:             *      &lt;/sequence&gt;
05917:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
05918:             *          &lt;annotation&gt;
05919:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
05920:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
05921:             *          &lt;/annotation&gt;
05922:             *      &lt;/attributeGroup&gt;
05923:             *  &lt;/complexType&gt;
05924:             *
05925:             *    </code>
05926:             *   </pre>
05927:             * </p>
05928:             *
05929:             * @generated
05930:             */
05931:            public static final AttributeType SOLIDPROPERTYTYPE_TYPE = AttributeTypeFactory
05932:                    .newAttributeType("SolidPropertyType",
05933:                            java.lang.Object.class);
05934:
05935:            /**
05936:             * <p>
05937:             *  <pre>
05938:             *   <code>
05939:             *  &lt;complexType name="GridEnvelopeType"&gt;
05940:             *      &lt;annotation&gt;
05941:             *          &lt;documentation&gt;Provides grid coordinate values for the diametrically opposed corners of an envelope that bounds a section of grid. The value of a single coordinate is the number of offsets from the origin of the grid in the direction of a specific axis.&lt;/documentation&gt;
05942:             *      &lt;/annotation&gt;
05943:             *      &lt;sequence&gt;
05944:             *          &lt;element name="low" type="gml:integerList"/&gt;
05945:             *          &lt;element name="high" type="gml:integerList"/&gt;
05946:             *      &lt;/sequence&gt;
05947:             *  &lt;/complexType&gt;
05948:             *
05949:             *    </code>
05950:             *   </pre>
05951:             * </p>
05952:             *
05953:             * @generated
05954:             */
05955:            public static final AttributeType GRIDENVELOPETYPE_TYPE = AttributeTypeFactory
05956:                    .newAttributeType("GridEnvelopeType",
05957:                            java.lang.Object.class);
05958:
05959:            /**
05960:             * <p>
05961:             *  <pre>
05962:             *   <code>
05963:             *  &lt;complexType abstract="true" name="CoordinateSystemAxisBaseType"&gt;
05964:             *      &lt;annotation&gt;
05965:             *          &lt;documentation&gt;Basic encoding for coordinate system axis objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
05966:             *      &lt;/annotation&gt;
05967:             *      &lt;complexContent&gt;
05968:             *          &lt;restriction base="gml:DefinitionType"&gt;
05969:             *              &lt;sequence&gt;
05970:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
05971:             *                  &lt;element ref="gml:name"&gt;
05972:             *                      &lt;annotation&gt;
05973:             *                          &lt;documentation&gt;The name by which this coordinate system axis is identified. &lt;/documentation&gt;
05974:             *                      &lt;/annotation&gt;
05975:             *                  &lt;/element&gt;
05976:             *              &lt;/sequence&gt;
05977:             *              &lt;attribute ref="gml:id" use="required"/&gt;
05978:             *          &lt;/restriction&gt;
05979:             *      &lt;/complexContent&gt;
05980:             *  &lt;/complexType&gt;
05981:             *
05982:             *    </code>
05983:             *   </pre>
05984:             * </p>
05985:             *
05986:             * @generated
05987:             */
05988:            public static final AttributeType COORDINATESYSTEMAXISBASETYPE_TYPE = AttributeTypeFactory
05989:                    .newAttributeType("CoordinateSystemAxisBaseType",
05990:                            java.lang.Object.class);
05991:
05992:            /**
05993:             * <p>
05994:             *  <pre>
05995:             *   <code>
05996:             *  &lt;complexType name="GraphStyleType"&gt;
05997:             *      &lt;annotation&gt;
05998:             *          &lt;documentation&gt;[complexType of] The style descriptor for a graph consisting of a number of features. Describes graph-specific style attributes.&lt;/documentation&gt;
05999:             *      &lt;/annotation&gt;
06000:             *      &lt;complexContent&gt;
06001:             *          &lt;extension base="gml:BaseStyleDescriptorType"&gt;
06002:             *              &lt;sequence&gt;
06003:             *                  &lt;element minOccurs="0" name="planar" type="boolean"/&gt;
06004:             *                  &lt;element minOccurs="0" name="directed" type="boolean"/&gt;
06005:             *                  &lt;element minOccurs="0" name="grid" type="boolean"/&gt;
06006:             *                  &lt;element minOccurs="0" name="minDistance" type="double"/&gt;
06007:             *                  &lt;element minOccurs="0" name="minAngle" type="double"/&gt;
06008:             *                  &lt;element minOccurs="0" name="graphType" type="gml:GraphTypeType"/&gt;
06009:             *                  &lt;element minOccurs="0" name="drawingType" type="gml:DrawingTypeType"/&gt;
06010:             *                  &lt;element minOccurs="0" name="lineType" type="gml:LineTypeType"/&gt;
06011:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
06012:             *                      name="aestheticCriteria" type="gml:AesheticCriteriaType"/&gt;
06013:             *              &lt;/sequence&gt;
06014:             *          &lt;/extension&gt;
06015:             *      &lt;/complexContent&gt;
06016:             *  &lt;/complexType&gt;
06017:             *
06018:             *    </code>
06019:             *   </pre>
06020:             * </p>
06021:             *
06022:             * @generated
06023:             */
06024:            public static final AttributeType GRAPHSTYLETYPE_TYPE = AttributeTypeFactory
06025:                    .newAttributeType("GraphStyleType", java.lang.Object.class);
06026:
06027:            /**
06028:             * <p>
06029:             *  <pre>
06030:             *   <code>
06031:             *  &lt;complexType name="BooleanPropertyType"&gt;
06032:             *      &lt;annotation&gt;
06033:             *          &lt;documentation&gt;Property whose content is a Boolean value.&lt;/documentation&gt;
06034:             *      &lt;/annotation&gt;
06035:             *      &lt;complexContent&gt;
06036:             *          &lt;restriction base="gml:ValuePropertyType"&gt;
06037:             *              &lt;sequence minOccurs="0"&gt;
06038:             *                  &lt;element ref="gml:Boolean"/&gt;
06039:             *              &lt;/sequence&gt;
06040:             *          &lt;/restriction&gt;
06041:             *      &lt;/complexContent&gt;
06042:             *  &lt;/complexType&gt;
06043:             *
06044:             *    </code>
06045:             *   </pre>
06046:             * </p>
06047:             *
06048:             * @generated
06049:             */
06050:            public static final AttributeType BOOLEANPROPERTYTYPE_TYPE = AttributeTypeFactory
06051:                    .newAttributeType("BooleanPropertyType",
06052:                            java.lang.Object.class);
06053:
06054:            /**
06055:             * <p>
06056:             *  <pre>
06057:             *   <code>
06058:             *  &lt;complexType name="CylinderType"&gt;
06059:             *      &lt;annotation&gt;
06060:             *          &lt;documentation&gt;A cylinder is a gridded surface given as a
06061:             *     family of circles whose positions vary along a set of parallel
06062:             *     lines, keeping the cross sectional horizontal curves of a
06063:             *     constant shape.
06064:             *     NOTE! Given the same working assumptions as in the previous
06065:             *     note, a Cylinder can be given by two circles, giving us the
06066:             *     control points of the form ((P1, P2, P3),(P4, P5, P6)).&lt;/documentation&gt;
06067:             *      &lt;/annotation&gt;
06068:             *      &lt;complexContent&gt;
06069:             *          &lt;extension base="gml:AbstractGriddedSurfaceType"&gt;
06070:             *              &lt;attribute fixed="circularArc3Points"
06071:             *                  name="horizontalCurveType" type="gml:CurveInterpolationType"/&gt;
06072:             *              &lt;attribute fixed="linear" name="verticalCurveType" type="gml:CurveInterpolationType"/&gt;
06073:             *          &lt;/extension&gt;
06074:             *      &lt;/complexContent&gt;
06075:             *  &lt;/complexType&gt;
06076:             *
06077:             *    </code>
06078:             *   </pre>
06079:             * </p>
06080:             *
06081:             * @generated
06082:             */
06083:            public static final AttributeType CYLINDERTYPE_TYPE = AttributeTypeFactory
06084:                    .newAttributeType("CylinderType", java.lang.Object.class);
06085:
06086:            /**
06087:             * <p>
06088:             *  <pre>
06089:             *   <code>
06090:             *  &lt;simpleType name="DecimalMinutesType"&gt;
06091:             *      &lt;annotation&gt;
06092:             *          &lt;documentation&gt;Decimal number of arc-minutes in a degree-minute angular value.&lt;/documentation&gt;
06093:             *      &lt;/annotation&gt;
06094:             *      &lt;restriction base="decimal"&gt;
06095:             *          &lt;minInclusive value="0.00"/&gt;
06096:             *          &lt;maxExclusive value="60.00"/&gt;
06097:             *      &lt;/restriction&gt;
06098:             *  &lt;/simpleType&gt;
06099:             *
06100:             *    </code>
06101:             *   </pre>
06102:             * </p>
06103:             *
06104:             * @generated
06105:             */
06106:            public static final AttributeType DECIMALMINUTESTYPE_TYPE = AttributeTypeFactory
06107:                    .newAttributeType("DecimalMinutesType",
06108:                            java.lang.Object.class);
06109:
06110:            /**
06111:             * <p>
06112:             *  <pre>
06113:             *   <code>
06114:             *  &lt;complexType name="FeatureArrayPropertyType"&gt;
06115:             *      &lt;annotation&gt;
06116:             *          &lt;documentation&gt;Container for features - follow gml:ArrayAssociationType pattern.&lt;/documentation&gt;
06117:             *      &lt;/annotation&gt;
06118:             *      &lt;sequence&gt;
06119:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_Feature"/&gt;
06120:             *      &lt;/sequence&gt;
06121:             *  &lt;/complexType&gt;
06122:             *
06123:             *    </code>
06124:             *   </pre>
06125:             * </p>
06126:             *
06127:             * @generated
06128:             */
06129:            public static final AttributeType FEATUREARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
06130:                    .newAttributeType("FeatureArrayPropertyType",
06131:                            java.lang.Object.class);
06132:
06133:            /**
06134:             * <p>
06135:             *  <pre>
06136:             *   <code>
06137:             *  &lt;complexType name="FeatureStyleType"&gt;
06138:             *      &lt;annotation&gt;
06139:             *          &lt;documentation&gt;[complexType of] The style descriptor for features.&lt;/documentation&gt;
06140:             *      &lt;/annotation&gt;
06141:             *      &lt;complexContent&gt;
06142:             *          &lt;extension base="gml:AbstractGMLType"&gt;
06143:             *              &lt;sequence&gt;
06144:             *                  &lt;element minOccurs="0" name="featureConstraint" type="string"/&gt;
06145:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:geometryStyle"/&gt;
06146:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:topologyStyle"/&gt;
06147:             *                  &lt;element minOccurs="0" ref="gml:labelStyle"/&gt;
06148:             *              &lt;/sequence&gt;
06149:             *              &lt;attribute name="featureType" type="string" use="optional"/&gt;
06150:             *              &lt;attribute name="baseType" type="string" use="optional"/&gt;
06151:             *              &lt;attribute name="queryGrammar" type="gml:QueryGrammarEnumeration"/&gt;
06152:             *          &lt;/extension&gt;
06153:             *      &lt;/complexContent&gt;
06154:             *  &lt;/complexType&gt;
06155:             *
06156:             *    </code>
06157:             *   </pre>
06158:             * </p>
06159:             *
06160:             * @generated
06161:             */
06162:            public static final AttributeType FEATURESTYLETYPE_TYPE = AttributeTypeFactory
06163:                    .newAttributeType("FeatureStyleType",
06164:                            java.lang.Object.class);
06165:
06166:            /**
06167:             * <p>
06168:             *  <pre>
06169:             *   <code>
06170:             *  &lt;complexType name="TemporalCRSRefType"&gt;
06171:             *      &lt;annotation&gt;
06172:             *          &lt;documentation&gt;Association to a temporal coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
06173:             *      &lt;/annotation&gt;
06174:             *      &lt;sequence minOccurs="0"&gt;
06175:             *          &lt;element ref="gml:TemporalCRS"/&gt;
06176:             *      &lt;/sequence&gt;
06177:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
06178:             *  &lt;/complexType&gt;
06179:             *
06180:             *    </code>
06181:             *   </pre>
06182:             * </p>
06183:             *
06184:             * @generated
06185:             */
06186:            public static final AttributeType TEMPORALCRSREFTYPE_TYPE = AttributeTypeFactory
06187:                    .newAttributeType("TemporalCRSRefType",
06188:                            java.lang.Object.class);
06189:
06190:            /**
06191:             * <p>
06192:             *  <pre>
06193:             *   <code>
06194:             *  &lt;complexType name="ArcStringByBulgeType"&gt;
06195:             *      &lt;annotation&gt;
06196:             *          &lt;documentation&gt;This variant of the arc computes the mid points of the arcs instead of storing the coordinates directly. The control point sequence consists of the start and end points of each arc plus the bulge.&lt;/documentation&gt;
06197:             *      &lt;/annotation&gt;
06198:             *      &lt;complexContent&gt;
06199:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
06200:             *              &lt;sequence&gt;
06201:             *                  &lt;choice&gt;
06202:             *                      &lt;annotation&gt;
06203:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
06204:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
06205:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be at least two.&lt;/documentation&gt;
06206:             *                      &lt;/annotation&gt;
06207:             *                      &lt;choice maxOccurs="unbounded" minOccurs="2"&gt;
06208:             *                          &lt;element ref="gml:pos"/&gt;
06209:             *                          &lt;element ref="gml:pointProperty"/&gt;
06210:             *                          &lt;element ref="gml:pointRep"&gt;
06211:             *                              &lt;annotation&gt;
06212:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
06213:             *                              &lt;/annotation&gt;
06214:             *                          &lt;/element&gt;
06215:             *                      &lt;/choice&gt;
06216:             *                      &lt;element ref="gml:posList"/&gt;
06217:             *                      &lt;element ref="gml:coordinates"&gt;
06218:             *                          &lt;annotation&gt;
06219:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
06220:             *                          &lt;/annotation&gt;
06221:             *                      &lt;/element&gt;
06222:             *                  &lt;/choice&gt;
06223:             *                  &lt;element maxOccurs="unbounded" name="bulge" type="double"&gt;
06224:             *                      &lt;annotation&gt;
06225:             *                          &lt;documentation&gt;The bulge controls the offset of each arc's midpoint. The "bulge" is the real number multiplier for the normal that determines the offset direction of the midpoint of each arc. The length of the bulge sequence is exactly 1 less than the length of the control point array, since a bulge is needed for each pair of adjacent points in the control point array. The bulge is not given by a distance, since it is simply a multiplier for the normal.
06226:             *  The midpoint of the resulting arc is given by: midPoint = ((startPoint + endPoint)/2.0) + bulge*normal&lt;/documentation&gt;
06227:             *                      &lt;/annotation&gt;
06228:             *                  &lt;/element&gt;
06229:             *                  &lt;element maxOccurs="unbounded" name="normal" type="gml:VectorType"&gt;
06230:             *                      &lt;annotation&gt;
06231:             *                          &lt;documentation&gt;The attribute "normal" is a vector normal (perpendicular) to the chord of the arc, the line joining the first and last
06232:             *  point of the arc. In a 2D coordinate system, there are only two possible directions for the normal, and it is often given as a signed real, indicating its length, with a positive sign indicating a left turn angle from the chord line, and a negative sign indicating a right turn from the chord. In 3D, the normal determines the plane of the arc, along with the start and endPoint of the arc.
06233:             *  The normal is usually a unit vector, but this is not absolutely necessary. If the normal is a zero vector, the geometric object becomes equivalent to the straight line between the two end points. The length of the normal sequence is exactly the same as for the bulge sequence, 1 less than the control point sequence length.&lt;/documentation&gt;
06234:             *                      &lt;/annotation&gt;
06235:             *                  &lt;/element&gt;
06236:             *              &lt;/sequence&gt;
06237:             *              &lt;attribute fixed="circularArc2PointWithBulge"
06238:             *                  name="interpolation" type="gml:CurveInterpolationType"&gt;
06239:             *                  &lt;annotation&gt;
06240:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism
06241:             *  uses the control points and control parameters to determine the position of this curve segment. For an ArcStringByBulge the interpolation is fixed as "circularArc2PointWithBulge".&lt;/documentation&gt;
06242:             *                  &lt;/annotation&gt;
06243:             *              &lt;/attribute&gt;
06244:             *              &lt;attribute name="numArc" type="integer" use="optional"&gt;
06245:             *                  &lt;annotation&gt;
06246:             *                      &lt;documentation&gt;The number of arcs in the arc string can be explicitly stated in this attribute. The number of control points in the arc string must be numArc + 1.&lt;/documentation&gt;
06247:             *                  &lt;/annotation&gt;
06248:             *              &lt;/attribute&gt;
06249:             *          &lt;/extension&gt;
06250:             *      &lt;/complexContent&gt;
06251:             *  &lt;/complexType&gt;
06252:             *
06253:             *    </code>
06254:             *   </pre>
06255:             * </p>
06256:             *
06257:             * @generated
06258:             */
06259:            public static final AttributeType ARCSTRINGBYBULGETYPE_TYPE = AttributeTypeFactory
06260:                    .newAttributeType("ArcStringByBulgeType",
06261:                            java.lang.Object.class);
06262:
06263:            /**
06264:             * <p>
06265:             *  <pre>
06266:             *   <code>
06267:             *  &lt;complexType name="AssociationType"&gt;
06268:             *      &lt;annotation&gt;
06269:             *          &lt;documentation&gt;A pattern or base for derived types used to specify complex types corresponding to an  unspecified UML association - either composition or aggregation.  Restricts the cardinality of Objects contained in the association to a maximum of one.  An instance of this type can contain an element representing an Object, or serve as a pointer to a remote Object.
06270:             *
06271:             *  Descendents of this type can be restricted in an application schema to
06272:             *  * allow only specified classes as valid participants in the aggregation
06273:             *  * allow only association by reference (i.e. empty the content model) or by value (i.e. remove the xlinks).
06274:             *
06275:             *  When used for association by reference, the value of the gml:remoteSchema attribute can be used to locate a schema fragment that constrains the target instance.
06276:             *
06277:             *  In many cases it is desirable to impose the constraint prohibiting the occurence of both reference and value in the same instance, as that would be ambiguous.  This is accomplished by adding a directive in the annotation element of the element declaration.  This directive can be in the form of normative prose, or can use a Schematron pattern to automatically constrain co-occurrence - see the declaration for _strictAssociation below.
06278:             *
06279:             *  If co-occurence is not prohibited, then both a link and content may be present.  If this occurs in an instance, then the rule for interpretation is that the instance found by traversing the href provides the normative value of the property, and should be used when possible.  The value(s) included as content may be used if the remote instance cannot be resolved.  This may be considered to be a "cached" version of the value(s).&lt;/documentation&gt;
06280:             *      &lt;/annotation&gt;
06281:             *      &lt;sequence minOccurs="0"&gt;
06282:             *          &lt;element ref="gml:_Object"/&gt;
06283:             *      &lt;/sequence&gt;
06284:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
06285:             *  &lt;/complexType&gt;
06286:             *
06287:             *    </code>
06288:             *   </pre>
06289:             * </p>
06290:             *
06291:             * @generated
06292:             */
06293:            public static final AttributeType ASSOCIATIONTYPE_TYPE = AttributeTypeFactory
06294:                    .newAttributeType("AssociationType", java.lang.Object.class);
06295:
06296:            /**
06297:             * <p>
06298:             *  <pre>
06299:             *   <code>
06300:             *  &lt;simpleType name="ArcSecondsType"&gt;
06301:             *      &lt;annotation&gt;
06302:             *          &lt;documentation&gt;Number of arc-seconds in a degree-minute-second angular value.&lt;/documentation&gt;
06303:             *      &lt;/annotation&gt;
06304:             *      &lt;restriction base="decimal"&gt;
06305:             *          &lt;minInclusive value="0.00"/&gt;
06306:             *          &lt;maxExclusive value="60.00"/&gt;
06307:             *      &lt;/restriction&gt;
06308:             *  &lt;/simpleType&gt;
06309:             *
06310:             *    </code>
06311:             *   </pre>
06312:             * </p>
06313:             *
06314:             * @generated
06315:             */
06316:            public static final AttributeType ARCSECONDSTYPE_TYPE = AttributeTypeFactory
06317:                    .newAttributeType("ArcSecondsType", java.lang.Object.class);
06318:
06319:            /**
06320:             * <p>
06321:             *  <pre>
06322:             *   <code>
06323:             *  &lt;complexType name="VerticalCRSRefType"&gt;
06324:             *      &lt;annotation&gt;
06325:             *          &lt;documentation&gt;Association to a vertical coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
06326:             *      &lt;/annotation&gt;
06327:             *      &lt;sequence minOccurs="0"&gt;
06328:             *          &lt;element ref="gml:VerticalCRS"/&gt;
06329:             *      &lt;/sequence&gt;
06330:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
06331:             *  &lt;/complexType&gt;
06332:             *
06333:             *    </code>
06334:             *   </pre>
06335:             * </p>
06336:             *
06337:             * @generated
06338:             */
06339:            public static final AttributeType VERTICALCRSREFTYPE_TYPE = AttributeTypeFactory
06340:                    .newAttributeType("VerticalCRSRefType",
06341:                            java.lang.Object.class);
06342:
06343:            /**
06344:             * <p>
06345:             *  <pre>
06346:             *   <code>
06347:             *  &lt;complexType name="DegreesType"&gt;
06348:             *      &lt;annotation&gt;
06349:             *          &lt;documentation&gt;Integer number of degrees, plus the angle direction. This element can be used for geographic Latitude and Longitude. For Latitude, the XML attribute direction can take the values "N" or "S", meaning North or South of the equator. For Longitude, direction can take the values "E" or "W", meaning East or West of the prime meridian. This element can also be used for other angles. In that case, the direction can take the values "+" or "-" (of SignType), in the specified rotational direction from a specified reference direction.&lt;/documentation&gt;
06350:             *      &lt;/annotation&gt;
06351:             *      &lt;simpleContent&gt;
06352:             *          &lt;extension base="gml:DegreeValueType"&gt;
06353:             *              &lt;attribute name="direction"&gt;
06354:             *                  &lt;simpleType&gt;
06355:             *                      &lt;union&gt;
06356:             *                          &lt;simpleType&gt;
06357:             *                              &lt;restriction base="string"&gt;
06358:             *                                  &lt;enumeration value="N"/&gt;
06359:             *                                  &lt;enumeration value="E"/&gt;
06360:             *                                  &lt;enumeration value="S"/&gt;
06361:             *                                  &lt;enumeration value="W"/&gt;
06362:             *                              &lt;/restriction&gt;
06363:             *                          &lt;/simpleType&gt;
06364:             *                          &lt;simpleType&gt;
06365:             *                              &lt;restriction base="gml:SignType"/&gt;
06366:             *                          &lt;/simpleType&gt;
06367:             *                      &lt;/union&gt;
06368:             *                  &lt;/simpleType&gt;
06369:             *              &lt;/attribute&gt;
06370:             *          &lt;/extension&gt;
06371:             *      &lt;/simpleContent&gt;
06372:             *  &lt;/complexType&gt;
06373:             *
06374:             *    </code>
06375:             *   </pre>
06376:             * </p>
06377:             *
06378:             * @generated
06379:             */
06380:            public static final AttributeType DEGREESTYPE_TYPE = AttributeTypeFactory
06381:                    .newAttributeType("DegreesType", java.lang.Object.class);
06382:
06383:            /**
06384:             * <p>
06385:             *  <pre>
06386:             *   <code>
06387:             *  &lt;complexType name="PointArrayPropertyType"&gt;
06388:             *      &lt;annotation&gt;
06389:             *          &lt;documentation&gt;A container for an array of points. The elements are always contained in the array property, referencing geometry
06390:             *                          elements or arrays of geometry elements is not supported.&lt;/documentation&gt;
06391:             *      &lt;/annotation&gt;
06392:             *      &lt;sequence&gt;
06393:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:Point"/&gt;
06394:             *      &lt;/sequence&gt;
06395:             *  &lt;/complexType&gt;
06396:             *
06397:             *    </code>
06398:             *   </pre>
06399:             * </p>
06400:             *
06401:             * @generated
06402:             */
06403:            public static final AttributeType POINTARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
06404:                    .newAttributeType("PointArrayPropertyType",
06405:                            java.lang.Object.class);
06406:
06407:            /**
06408:             * <p>
06409:             *  <pre>
06410:             *   <code>
06411:             *  &lt;complexType mixed="true" name="LabelType"&gt;
06412:             *      &lt;annotation&gt;
06413:             *          &lt;documentation&gt;Label is mixed -- composed of text and XPath expressions used to extract the useful information from the feature.&lt;/documentation&gt;
06414:             *      &lt;/annotation&gt;
06415:             *      &lt;sequence&gt;
06416:             *          &lt;element maxOccurs="unbounded" minOccurs="0"
06417:             *              name="LabelExpression" type="string"/&gt;
06418:             *      &lt;/sequence&gt;
06419:             *      &lt;attribute ref="gml:transform" use="optional"/&gt;
06420:             *  &lt;/complexType&gt;
06421:             *
06422:             *    </code>
06423:             *   </pre>
06424:             * </p>
06425:             *
06426:             * @generated
06427:             */
06428:            public static final AttributeType LABELTYPE_TYPE = AttributeTypeFactory
06429:                    .newAttributeType("LabelType", java.lang.Object.class);
06430:
06431:            /**
06432:             * <p>
06433:             *  <pre>
06434:             *   <code>
06435:             *  &lt;complexType name="OffsetCurveType"&gt;
06436:             *      &lt;annotation&gt;
06437:             *          &lt;documentation&gt;An offset curve is a curve at a constant
06438:             *                   distance from the basis curve. They can be useful as a cheap
06439:             *                   and simple alternative to constructing curves that are offsets
06440:             *                   by definition.&lt;/documentation&gt;
06441:             *      &lt;/annotation&gt;
06442:             *      &lt;complexContent&gt;
06443:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
06444:             *              &lt;sequence&gt;
06445:             *                  &lt;element name="offsetBase" type="gml:CurvePropertyType"&gt;
06446:             *                      &lt;annotation&gt;
06447:             *                          &lt;documentation&gt;offsetBase is a reference to thecurve from which this
06448:             *                                                           curve is define        as an offset.&lt;/documentation&gt;
06449:             *                      &lt;/annotation&gt;
06450:             *                  &lt;/element&gt;
06451:             *                  &lt;element name="distance" type="gml:LengthType"&gt;
06452:             *                      &lt;annotation&gt;
06453:             *                          &lt;documentation&gt;distance is the distance at which the
06454:             *                                                           offset curve is generated from the basis curve. In 2D systems, positive distances
06455:             *                                                           are to be to the left of the basis curve, and the negative distances are to be to the
06456:             *                                                           right of the basis curve.&lt;/documentation&gt;
06457:             *                      &lt;/annotation&gt;
06458:             *                  &lt;/element&gt;
06459:             *                  &lt;element minOccurs="0" name="refDirection" type="gml:VectorType"&gt;
06460:             *                      &lt;annotation&gt;
06461:             *                          &lt;documentation&gt;refDistance is used to define the vector
06462:             *         direction of the offset curve from the basis curve. It can
06463:             *         be omitted in the 2D case, where the distance can be
06464:             *         positive or negative. In that case, distance defines left
06465:             *         side (positive distance) or right side (negative distance)
06466:             *         with respect to the tangent to the basis curve.
06467:             *
06468:             *         In 3D the basis curve shall have a well defined tangent
06469:             *         direction for every point. The offset curve at any point
06470:             *         in 3D, the basis curve shall have a well-defined tangent
06471:             *         direction for every point. The offset curve at any point
06472:             *         (parameter) on the basis curve c is in the direction
06473:             *         -   -   -         -
06474:             *         s = v x t  where  v = c.refDirection()
06475:             *         and
06476:             *         -
06477:             *         t = c.tangent()
06478:             *                                                      -
06479:             *         For the offset direction to be well-defined, v shall not
06480:             *         on any point of the curve be in the same, or opposite,
06481:             *         direction as
06482:             *         -
06483:             *         t.
06484:             *
06485:             *         The default value of the refDirection shall be the local
06486:             *         co-ordinate axis vector for elevation, which indicates up for
06487:             *         the curve in a geographic sense.
06488:             *
06489:             *         NOTE! If the refDirection is the positive tangent to the
06490:             *         local elevation axis ("points upward"), then the offset
06491:             *         vector points to the left of the curve when viewed from
06492:             *         above.&lt;/documentation&gt;
06493:             *                      &lt;/annotation&gt;
06494:             *                  &lt;/element&gt;
06495:             *              &lt;/sequence&gt;
06496:             *          &lt;/extension&gt;
06497:             *      &lt;/complexContent&gt;
06498:             *  &lt;/complexType&gt;
06499:             *
06500:             *    </code>
06501:             *   </pre>
06502:             * </p>
06503:             *
06504:             * @generated
06505:             */
06506:            public static final AttributeType OFFSETCURVETYPE_TYPE = AttributeTypeFactory
06507:                    .newAttributeType("OffsetCurveType", java.lang.Object.class);
06508:
06509:            /**
06510:             * <p>
06511:             *  <pre>
06512:             *   <code>
06513:             *  &lt;complexType name="TopoPrimitiveArrayAssociationType"&gt;
06514:             *      &lt;annotation&gt;
06515:             *          &lt;documentation&gt;This type supports embedding an array of topological primitives in a TopoComplex&lt;/documentation&gt;
06516:             *      &lt;/annotation&gt;
06517:             *      &lt;!--                &lt;complexContent&gt;
06518:             *                          &lt;restriction base="gml:ArrayAssociationType"&gt;  --&gt;
06519:             *      &lt;sequence&gt;
06520:             *          &lt;choice maxOccurs="unbounded" minOccurs="0"&gt;
06521:             *              &lt;element ref="gml:_TopoPrimitive"/&gt;
06522:             *          &lt;/choice&gt;
06523:             *      &lt;/sequence&gt;
06524:             *      &lt;!--                         &lt;/restriction&gt;
06525:             *                  &lt;/complexContent&gt; --&gt;
06526:             *  &lt;/complexType&gt;
06527:             *
06528:             *    </code>
06529:             *   </pre>
06530:             * </p>
06531:             *
06532:             * @generated
06533:             */
06534:            public static final AttributeType TOPOPRIMITIVEARRAYASSOCIATIONTYPE_TYPE = AttributeTypeFactory
06535:                    .newAttributeType("TopoPrimitiveArrayAssociationType",
06536:                            java.lang.Object.class);
06537:
06538:            /**
06539:             * <p>
06540:             *  <pre>
06541:             *   <code>
06542:             *  &lt;complexType name="CubicSplineType"&gt;
06543:             *      &lt;annotation&gt;
06544:             *          &lt;documentation&gt;Cubic splines are similar to line strings in that they are a sequence of segments each with its own defining function. A cubic spline uses the control points and a set of derivative parameters to define a piecewise 3rd degree polynomial interpolation. Unlike line-strings, the parameterization by arc length is not necessarily still a polynomial.
06545:             *                                  The function describing the curve must be C2, that is, have a continuous 1st and 2nd derivative at all points, and pass through the controlPoints in the order given. Between the control points, the curve segment is defined by a cubic polynomial. At each control point, the polynomial changes in such a manner that the 1st and 2nd derivative vectors are the same from either side. The control parameters record must contain vectorAtStart, and vectorAtEnd which are the unit tangent vectors at controlPoint[1] and controlPoint[n] where n = controlPoint.count.
06546:             *                                  Note: only the direction of the vectors is relevant, not their length.&lt;/documentation&gt;
06547:             *      &lt;/annotation&gt;
06548:             *      &lt;complexContent&gt;
06549:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
06550:             *              &lt;sequence&gt;
06551:             *                  &lt;choice&gt;
06552:             *                      &lt;annotation&gt;
06553:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
06554:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
06555:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be at least three.&lt;/documentation&gt;
06556:             *                      &lt;/annotation&gt;
06557:             *                      &lt;choice maxOccurs="unbounded" minOccurs="2"&gt;
06558:             *                          &lt;element ref="gml:pos"/&gt;
06559:             *                          &lt;element ref="gml:pointProperty"/&gt;
06560:             *                          &lt;element ref="gml:pointRep"&gt;
06561:             *                              &lt;annotation&gt;
06562:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
06563:             *                              &lt;/annotation&gt;
06564:             *                          &lt;/element&gt;
06565:             *                      &lt;/choice&gt;
06566:             *                      &lt;element ref="gml:posList"/&gt;
06567:             *                      &lt;element ref="gml:coordinates"&gt;
06568:             *                          &lt;annotation&gt;
06569:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
06570:             *                          &lt;/annotation&gt;
06571:             *                      &lt;/element&gt;
06572:             *                  &lt;/choice&gt;
06573:             *                  &lt;element name="vectorAtStart" type="gml:VectorType"&gt;
06574:             *                      &lt;annotation&gt;
06575:             *                          &lt;documentation&gt;"vectorAtStart" is the unit tangent vector at the start point of the spline.&lt;/documentation&gt;
06576:             *                      &lt;/annotation&gt;
06577:             *                  &lt;/element&gt;
06578:             *                  &lt;element name="vectorAtEnd" type="gml:VectorType"&gt;
06579:             *                      &lt;annotation&gt;
06580:             *                          &lt;documentation&gt;"vectorAtEnd" is the unit tangent vector at the end point of the spline.&lt;/documentation&gt;
06581:             *                      &lt;/annotation&gt;
06582:             *                  &lt;/element&gt;
06583:             *              &lt;/sequence&gt;
06584:             *              &lt;attribute fixed="cubicSpline" name="interpolation" type="gml:CurveInterpolationType"&gt;
06585:             *                  &lt;annotation&gt;
06586:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism
06587:             *  uses the control points and control parameters to determine the position of this curve segment. For a CubicSpline the interpolation is fixed as "cubicSpline".&lt;/documentation&gt;
06588:             *                  &lt;/annotation&gt;
06589:             *              &lt;/attribute&gt;
06590:             *              &lt;attribute fixed="3" name="degree" type="integer"&gt;
06591:             *                  &lt;annotation&gt;
06592:             *                      &lt;documentation&gt;The degree for a cubic spline is "3".&lt;/documentation&gt;
06593:             *                  &lt;/annotation&gt;
06594:             *              &lt;/attribute&gt;
06595:             *          &lt;/extension&gt;
06596:             *      &lt;/complexContent&gt;
06597:             *  &lt;/complexType&gt;
06598:             *
06599:             *    </code>
06600:             *   </pre>
06601:             * </p>
06602:             *
06603:             * @generated
06604:             */
06605:            public static final AttributeType CUBICSPLINETYPE_TYPE = AttributeTypeFactory
06606:                    .newAttributeType("CubicSplineType", java.lang.Object.class);
06607:
06608:            /**
06609:             * <p>
06610:             *  <pre>
06611:             *   <code>
06612:             *  &lt;complexType name="CoordType"&gt;
06613:             *      &lt;annotation&gt;
06614:             *          &lt;documentation&gt;Represents a coordinate tuple in one, two, or three dimensions. Deprecated with GML 3.0 and replaced by
06615:             *                          DirectPositionType.&lt;/documentation&gt;
06616:             *      &lt;/annotation&gt;
06617:             *      &lt;sequence&gt;
06618:             *          &lt;element name="X" type="decimal"/&gt;
06619:             *          &lt;element minOccurs="0" name="Y" type="decimal"/&gt;
06620:             *          &lt;element minOccurs="0" name="Z" type="decimal"/&gt;
06621:             *      &lt;/sequence&gt;
06622:             *  &lt;/complexType&gt;
06623:             *
06624:             *    </code>
06625:             *   </pre>
06626:             * </p>
06627:             *
06628:             * @generated
06629:             */
06630:            public static final AttributeType COORDTYPE_TYPE = AttributeTypeFactory
06631:                    .newAttributeType("CoordType", java.lang.Object.class);
06632:
06633:            /**
06634:             * <p>
06635:             *  <pre>
06636:             *   <code>
06637:             *  &lt;complexType name="DirectPositionType"&gt;
06638:             *      &lt;annotation&gt;
06639:             *          &lt;documentation&gt;DirectPosition instances hold the coordinates for a position within some coordinate reference system (CRS). Since
06640:             *                          DirectPositions, as data types, will often be included in larger objects (such as geometry elements) that have references to CRS, the
06641:             *                          "srsName" attribute will in general be missing, if this particular DirectPosition is included in a larger element with such a reference to a
06642:             *                          CRS. In this case, the CRS is implicitly assumed to take on the value of the containing object's CRS.&lt;/documentation&gt;
06643:             *      &lt;/annotation&gt;
06644:             *      &lt;simpleContent&gt;
06645:             *          &lt;extension base="gml:doubleList"&gt;
06646:             *              &lt;attributeGroup ref="gml:SRSReferenceGroup"/&gt;
06647:             *          &lt;/extension&gt;
06648:             *      &lt;/simpleContent&gt;
06649:             *  &lt;/complexType&gt;
06650:             *
06651:             *    </code>
06652:             *   </pre>
06653:             * </p>
06654:             *
06655:             * @generated
06656:             */
06657:            public static final AttributeType DIRECTPOSITIONTYPE_TYPE = AttributeTypeFactory
06658:                    .newAttributeType("DirectPositionType",
06659:                            java.lang.Object.class);
06660:
06661:            /**
06662:             * <p>
06663:             *  <pre>
06664:             *   <code>
06665:             *  &lt;complexType name="GridCoverageType"&gt;
06666:             *      &lt;complexContent&gt;
06667:             *          &lt;restriction base="gml:AbstractDiscreteCoverageType"&gt;
06668:             *              &lt;sequence&gt;
06669:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
06670:             *                  &lt;element minOccurs="0" ref="gml:boundedBy"/&gt;
06671:             *                  &lt;element ref="gml:gridDomain"/&gt;
06672:             *                  &lt;element ref="gml:rangeSet"/&gt;
06673:             *                  &lt;element minOccurs="0" ref="gml:coverageFunction"/&gt;
06674:             *              &lt;/sequence&gt;
06675:             *          &lt;/restriction&gt;
06676:             *      &lt;/complexContent&gt;
06677:             *  &lt;/complexType&gt;
06678:             *
06679:             *    </code>
06680:             *   </pre>
06681:             * </p>
06682:             *
06683:             * @generated
06684:             */
06685:            public static final AttributeType GRIDCOVERAGETYPE_TYPE = AttributeTypeFactory
06686:                    .newAttributeType("GridCoverageType",
06687:                            java.lang.Object.class);
06688:
06689:            /**
06690:             * <p>
06691:             *  <pre>
06692:             *   <code>
06693:             *  &lt;complexType name="ContainerPropertyType"&gt;
06694:             *      &lt;sequence minOccurs="0"&gt;
06695:             *          &lt;choice&gt;
06696:             *              &lt;element ref="gml:Face"/&gt;
06697:             *              &lt;element ref="gml:TopoSolid"/&gt;
06698:             *          &lt;/choice&gt;
06699:             *      &lt;/sequence&gt;
06700:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
06701:             *  &lt;/complexType&gt;
06702:             *
06703:             *    </code>
06704:             *   </pre>
06705:             * </p>
06706:             *
06707:             * @generated
06708:             */
06709:            public static final AttributeType CONTAINERPROPERTYTYPE_TYPE = AttributeTypeFactory
06710:                    .newAttributeType("ContainerPropertyType",
06711:                            java.lang.Object.class);
06712:
06713:            /**
06714:             * <p>
06715:             *  <pre>
06716:             *   <code>
06717:             *  &lt;complexType name="AngleType"&gt;
06718:             *      &lt;annotation&gt;
06719:             *          &lt;documentation&gt;Value of an angle quantity recorded as a single number, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for an angle, such as degrees or radians.&lt;/documentation&gt;
06720:             *      &lt;/annotation&gt;
06721:             *      &lt;simpleContent&gt;
06722:             *          &lt;restriction base="gml:MeasureType"/&gt;
06723:             *      &lt;/simpleContent&gt;
06724:             *  &lt;/complexType&gt;
06725:             *
06726:             *    </code>
06727:             *   </pre>
06728:             * </p>
06729:             *
06730:             * @generated
06731:             */
06732:            public static final AttributeType ANGLETYPE_TYPE = AttributeTypeFactory
06733:                    .newAttributeType("AngleType", java.lang.Object.class);
06734:
06735:            /**
06736:             * <p>
06737:             *  <pre>
06738:             *   <code>
06739:             *  &lt;complexType abstract="true" name="AbstractGeometricAggregateType"&gt;
06740:             *      &lt;annotation&gt;
06741:             *          &lt;documentation&gt;This is the abstract root type of the geometric aggregates.&lt;/documentation&gt;
06742:             *      &lt;/annotation&gt;
06743:             *      &lt;complexContent&gt;
06744:             *          &lt;extension base="gml:AbstractGeometryType"/&gt;
06745:             *      &lt;/complexContent&gt;
06746:             *  &lt;/complexType&gt;
06747:             *
06748:             *    </code>
06749:             *   </pre>
06750:             * </p>
06751:             *
06752:             * @generated
06753:             */
06754:            public static final AttributeType ABSTRACTGEOMETRICAGGREGATETYPE_TYPE = AttributeTypeFactory
06755:                    .newAttributeType("AbstractGeometricAggregateType",
06756:                            java.lang.Object.class);
06757:
06758:            /**
06759:             * <p>
06760:             *  <pre>
06761:             *   <code>
06762:             *  &lt;complexType abstract="true" name="AbstractTimeGeometricPrimitiveType"&gt;
06763:             *      &lt;annotation&gt;
06764:             *          &lt;documentation xml:lang="en"&gt;The abstract supertype for temporal geometric primitives.
06765:             *         A temporal geometry must be associated with a temporal reference system via URI.
06766:             *         The Gregorian calendar with UTC is the default reference system, following ISO
06767:             *         8601. Other reference systems in common use include the GPS calendar and the
06768:             *         Julian calendar.&lt;/documentation&gt;
06769:             *      &lt;/annotation&gt;
06770:             *      &lt;complexContent&gt;
06771:             *          &lt;extension base="gml:AbstractTimePrimitiveType"&gt;
06772:             *              &lt;attribute default="#ISO-8601" name="frame" type="anyURI" use="optional"/&gt;
06773:             *          &lt;/extension&gt;
06774:             *      &lt;/complexContent&gt;
06775:             *  &lt;/complexType&gt;
06776:             *
06777:             *    </code>
06778:             *   </pre>
06779:             * </p>
06780:             *
06781:             * @generated
06782:             */
06783:            public static final AttributeType ABSTRACTTIMEGEOMETRICPRIMITIVETYPE_TYPE = AttributeTypeFactory
06784:                    .newAttributeType("AbstractTimeGeometricPrimitiveType",
06785:                            java.lang.Object.class);
06786:
06787:            /**
06788:             * <p>
06789:             *  <pre>
06790:             *   <code>
06791:             *  &lt;complexType name="MovingObjectStatusType"&gt;
06792:             *      &lt;annotation&gt;
06793:             *          &lt;documentation xml:lang="en"&gt;This type encapsulates various dynamic properties of moving objects
06794:             *               (points, lines, regions). It is useful for dealing with features whose
06795:             *               geometry or topology changes over time.&lt;/documentation&gt;
06796:             *      &lt;/annotation&gt;
06797:             *      &lt;complexContent&gt;
06798:             *          &lt;extension base="gml:AbstractTimeSliceType"&gt;
06799:             *              &lt;sequence&gt;
06800:             *                  &lt;element ref="gml:location"/&gt;
06801:             *                  &lt;element minOccurs="0" name="speed" type="gml:MeasureType"/&gt;
06802:             *                  &lt;element minOccurs="0" name="bearing" type="gml:DirectionPropertyType"/&gt;
06803:             *                  &lt;element minOccurs="0" name="acceleration" type="gml:MeasureType"/&gt;
06804:             *                  &lt;element minOccurs="0" name="elevation" type="gml:MeasureType"/&gt;
06805:             *                  &lt;element minOccurs="0" ref="gml:status"/&gt;
06806:             *              &lt;/sequence&gt;
06807:             *          &lt;/extension&gt;
06808:             *      &lt;/complexContent&gt;
06809:             *  &lt;/complexType&gt;
06810:             *
06811:             *    </code>
06812:             *   </pre>
06813:             * </p>
06814:             *
06815:             * @generated
06816:             */
06817:            public static final AttributeType MOVINGOBJECTSTATUSTYPE_TYPE = AttributeTypeFactory
06818:                    .newAttributeType("MovingObjectStatusType",
06819:                            java.lang.Object.class);
06820:
06821:            /**
06822:             * <p>
06823:             *  <pre>
06824:             *   <code>
06825:             *  &lt;complexType abstract="true" name="AbstractCoordinateSystemType"&gt;
06826:             *      &lt;annotation&gt;
06827:             *          &lt;documentation&gt;A coordinate system (CS) is the set of coordinate system axes that spans a given coordinate space. A CS is derived from a set of (mathematical) rules for specifying how coordinates in a given space are to be assigned to points. The coordinate values in a coordinate tuple shall be recorded in the order in which the coordinate system axes associations are recorded, whenever those coordinates use a coordinate reference system that uses this coordinate system. This abstract complexType shall not be used, extended, or restricted, in an Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document. &lt;/documentation&gt;
06828:             *      &lt;/annotation&gt;
06829:             *      &lt;complexContent&gt;
06830:             *          &lt;extension base="gml:AbstractCoordinateSystemBaseType"&gt;
06831:             *              &lt;sequence&gt;
06832:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:csID"&gt;
06833:             *                      &lt;annotation&gt;
06834:             *                          &lt;documentation&gt;Set of alternative identifications of this coordinate system. The first csID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
06835:             *                      &lt;/annotation&gt;
06836:             *                  &lt;/element&gt;
06837:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
06838:             *                      &lt;annotation&gt;
06839:             *                          &lt;documentation&gt;Comments on or information about this coordinate system, including data source information. &lt;/documentation&gt;
06840:             *                      &lt;/annotation&gt;
06841:             *                  &lt;/element&gt;
06842:             *                  &lt;element maxOccurs="unbounded" ref="gml:usesAxis"&gt;
06843:             *                      &lt;annotation&gt;
06844:             *                          &lt;documentation&gt;Ordered sequence of associations to the coordinate system axes included in this coordinate system. &lt;/documentation&gt;
06845:             *                      &lt;/annotation&gt;
06846:             *                  &lt;/element&gt;
06847:             *              &lt;/sequence&gt;
06848:             *          &lt;/extension&gt;
06849:             *      &lt;/complexContent&gt;
06850:             *  &lt;/complexType&gt;
06851:             *
06852:             *    </code>
06853:             *   </pre>
06854:             * </p>
06855:             *
06856:             * @generated
06857:             */
06858:            public static final AttributeType ABSTRACTCOORDINATESYSTEMTYPE_TYPE = AttributeTypeFactory
06859:                    .newAttributeType("AbstractCoordinateSystemType",
06860:                            java.lang.Object.class);
06861:
06862:            /**
06863:             * <p>
06864:             *  <pre>
06865:             *   <code>
06866:             *  &lt;complexType final="#all" name="TimePositionType"&gt;
06867:             *      &lt;annotation&gt;
06868:             *          &lt;documentation xml:lang="en"&gt;Direct representation of a temporal position.
06869:             *        Indeterminate time values are also allowed, as described in ISO 19108. The indeterminatePosition
06870:             *        attribute can be used alone or it can qualify a specific value for temporal position (e.g. before
06871:             *        2002-12, after 1019624400).
06872:             *        For time values that identify position within a calendar, the calendarEraName attribute provides
06873:             *        the name of the calendar era to which the date is referenced (e.g. the Meiji era of the Japanese calendar).&lt;/documentation&gt;
06874:             *      &lt;/annotation&gt;
06875:             *      &lt;simpleContent&gt;
06876:             *          &lt;extension base="gml:TimePositionUnion"&gt;
06877:             *              &lt;attribute default="#ISO-8601" name="frame" type="anyURI" use="optional"/&gt;
06878:             *              &lt;attribute name="calendarEraName" type="string" use="optional"/&gt;
06879:             *              &lt;attribute name="indeterminatePosition"
06880:             *                  type="gml:TimeIndeterminateValueType" use="optional"/&gt;
06881:             *          &lt;/extension&gt;
06882:             *      &lt;/simpleContent&gt;
06883:             *  &lt;/complexType&gt;
06884:             *
06885:             *    </code>
06886:             *   </pre>
06887:             * </p>
06888:             *
06889:             * @generated
06890:             */
06891:            public static final AttributeType TIMEPOSITIONTYPE_TYPE = AttributeTypeFactory
06892:                    .newAttributeType("TimePositionType",
06893:                            java.lang.Object.class);
06894:
06895:            /**
06896:             * <p>
06897:             *  <pre>
06898:             *   <code>
06899:             *  &lt;complexType name="HistoryPropertyType"&gt;
06900:             *      &lt;annotation&gt;
06901:             *          &lt;documentation xml:lang="en"&gt;The history relationship associates a feature with a sequence of TimeSlice instances.&lt;/documentation&gt;
06902:             *      &lt;/annotation&gt;
06903:             *      &lt;sequence maxOccurs="unbounded"&gt;
06904:             *          &lt;element ref="gml:_TimeSlice"/&gt;
06905:             *      &lt;/sequence&gt;
06906:             *  &lt;/complexType&gt;
06907:             *
06908:             *    </code>
06909:             *   </pre>
06910:             * </p>
06911:             *
06912:             * @generated
06913:             */
06914:            public static final AttributeType HISTORYPROPERTYTYPE_TYPE = AttributeTypeFactory
06915:                    .newAttributeType("HistoryPropertyType",
06916:                            java.lang.Object.class);
06917:
06918:            /**
06919:             * <p>
06920:             *  <pre>
06921:             *   <code>
06922:             *  &lt;complexType name="MultiSurfaceType"&gt;
06923:             *      &lt;annotation&gt;
06924:             *          &lt;documentation&gt;A MultiSurface is defined by one or more Surfaces, referenced through surfaceMember elements.&lt;/documentation&gt;
06925:             *      &lt;/annotation&gt;
06926:             *      &lt;complexContent&gt;
06927:             *          &lt;extension base="gml:AbstractGeometricAggregateType"&gt;
06928:             *              &lt;sequence&gt;
06929:             *                  &lt;annotation&gt;
06930:             *                      &lt;documentation&gt;The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection.
06931:             *  NOTE: Array properties cannot reference remote geometry elements.&lt;/documentation&gt;
06932:             *                  &lt;/annotation&gt;
06933:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:surfaceMember"/&gt;
06934:             *                  &lt;element minOccurs="0" ref="gml:surfaceMembers"/&gt;
06935:             *              &lt;/sequence&gt;
06936:             *          &lt;/extension&gt;
06937:             *      &lt;/complexContent&gt;
06938:             *  &lt;/complexType&gt;
06939:             *
06940:             *    </code>
06941:             *   </pre>
06942:             * </p>
06943:             *
06944:             * @generated
06945:             */
06946:            public static final AttributeType MULTISURFACETYPE_TYPE = AttributeTypeFactory
06947:                    .newAttributeType("MultiSurfaceType", MultiPolygon.class);
06948:
06949:            /**
06950:             * <p>
06951:             *  <pre>
06952:             *   <code>
06953:             *  &lt;complexType name="DomainSetType"&gt;
06954:             *      &lt;annotation&gt;
06955:             *          &lt;documentation&gt;The spatiotemporal domain of a coverage.
06956:             *    Typically
06957:             *    * a geometry collection,
06958:             *    * an implicit geometry (e.g. a grid),
06959:             *    * an explicit or implicit collection of time instances or periods, or
06960:             *
06961:             *  N.B. Temporal geometric complexes and temporal grids are not yet implemented in GML.&lt;/documentation&gt;
06962:             *      &lt;/annotation&gt;
06963:             *      &lt;sequence minOccurs="0"&gt;
06964:             *          &lt;choice&gt;
06965:             *              &lt;element ref="gml:_Geometry"/&gt;
06966:             *              &lt;element ref="gml:_TimeObject"/&gt;
06967:             *          &lt;/choice&gt;
06968:             *      &lt;/sequence&gt;
06969:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
06970:             *  &lt;/complexType&gt;
06971:             *
06972:             *    </code>
06973:             *   </pre>
06974:             * </p>
06975:             *
06976:             * @generated
06977:             */
06978:            public static final AttributeType DOMAINSETTYPE_TYPE = AttributeTypeFactory
06979:                    .newAttributeType("DomainSetType", java.lang.Object.class);
06980:
06981:            /**
06982:             * <p>
06983:             *  <pre>
06984:             *   <code>
06985:             *  &lt;simpleType name="doubleOrNull"&gt;
06986:             *      &lt;annotation&gt;
06987:             *          &lt;documentation&gt;Union of the XML Schema double type and the GML Nulltype.  An element which uses this type may have content which is either a double or a value from Nulltype&lt;/documentation&gt;
06988:             *      &lt;/annotation&gt;
06989:             *      &lt;union memberTypes="gml:NullEnumeration double anyURI"/&gt;
06990:             *  &lt;/simpleType&gt;
06991:             *
06992:             *    </code>
06993:             *   </pre>
06994:             * </p>
06995:             *
06996:             * @generated
06997:             */
06998:            public static final AttributeType DOUBLEORNULL_TYPE = AttributeTypeFactory
06999:                    .newAttributeType("doubleOrNull", java.lang.Object.class);
07000:
07001:            /**
07002:             * <p>
07003:             *  <pre>
07004:             *   <code>
07005:             *  &lt;complexType name="DictionaryEntryType"&gt;
07006:             *      &lt;annotation&gt;
07007:             *          &lt;documentation&gt;An entry in a dictionary of definitions. An instance of this type contains or refers to a definition object.
07008:             *
07009:             *  The number of definitions contained in this dictionaryEntry is restricted to one, but a DefinitionCollection or Dictionary that contains multiple definitions can be substituted if needed. Specialized descendents of this dictionaryEntry might be restricted in an application schema to allow only including specified types of definitions as valid entries in a dictionary. &lt;/documentation&gt;
07010:             *      &lt;/annotation&gt;
07011:             *      &lt;sequence minOccurs="0"&gt;
07012:             *          &lt;element ref="gml:Definition"&gt;
07013:             *              &lt;annotation&gt;
07014:             *                  &lt;documentation&gt;This element in a dictionary entry contains the actual definition. &lt;/documentation&gt;
07015:             *              &lt;/annotation&gt;
07016:             *          &lt;/element&gt;
07017:             *      &lt;/sequence&gt;
07018:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
07019:             *          &lt;annotation&gt;
07020:             *              &lt;documentation&gt;A non-identified reference to a remote entry in this dictionary, to be used when this entry need not be identified to allow external references to this specific entry. The remote entry referenced will usually be in a dictionary in the same XML document. This element will usually be used in dictionaries that are inside of another dictionary. &lt;/documentation&gt;
07021:             *          &lt;/annotation&gt;
07022:             *      &lt;/attributeGroup&gt;
07023:             *  &lt;/complexType&gt;
07024:             *
07025:             *    </code>
07026:             *   </pre>
07027:             * </p>
07028:             *
07029:             * @generated
07030:             */
07031:            public static final AttributeType DICTIONARYENTRYTYPE_TYPE = AttributeTypeFactory
07032:                    .newAttributeType("DictionaryEntryType",
07033:                            java.lang.Object.class);
07034:
07035:            /**
07036:             * <p>
07037:             *  <pre>
07038:             *   <code>
07039:             *  &lt;complexType name="CovarianceMatrixType"&gt;
07040:             *      &lt;annotation&gt;
07041:             *          &lt;documentation&gt;Error estimate covariance matrix. &lt;/documentation&gt;
07042:             *      &lt;/annotation&gt;
07043:             *      &lt;complexContent&gt;
07044:             *          &lt;extension base="gml:AbstractPositionalAccuracyType"&gt;
07045:             *              &lt;sequence&gt;
07046:             *                  &lt;element maxOccurs="unbounded" ref="gml:unitOfMeasure"&gt;
07047:             *                      &lt;annotation&gt;
07048:             *                          &lt;documentation&gt;Ordered sequence of units of measure, corresponding to the row and column index numbers of the covariance matrix, starting with row and column 1 and ending with row/column N. Each unit of measure is for the ordinate reflected in the relevant row and column of the covariance matrix. &lt;/documentation&gt;
07049:             *                      &lt;/annotation&gt;
07050:             *                  &lt;/element&gt;
07051:             *                  &lt;element maxOccurs="unbounded" ref="gml:includesElement"&gt;
07052:             *                      &lt;annotation&gt;
07053:             *                          &lt;documentation&gt;Unordered set of elements in this covariance matrix. Because the covariance matrix is symmetrical, only the elements in the upper or lower diagonal part (including the main diagonal) of the matrix need to be specified. Any zero valued covariance elements can be omitted. &lt;/documentation&gt;
07054:             *                      &lt;/annotation&gt;
07055:             *                  &lt;/element&gt;
07056:             *              &lt;/sequence&gt;
07057:             *          &lt;/extension&gt;
07058:             *      &lt;/complexContent&gt;
07059:             *  &lt;/complexType&gt;
07060:             *
07061:             *    </code>
07062:             *   </pre>
07063:             * </p>
07064:             *
07065:             * @generated
07066:             */
07067:            public static final AttributeType COVARIANCEMATRIXTYPE_TYPE = AttributeTypeFactory
07068:                    .newAttributeType("CovarianceMatrixType",
07069:                            java.lang.Object.class);
07070:
07071:            /**
07072:             * <p>
07073:             *  <pre>
07074:             *   <code>
07075:             *  &lt;complexType name="PolygonPropertyType"&gt;
07076:             *      &lt;annotation&gt;
07077:             *          &lt;documentation&gt;This type is deprecated with GML 3 and shall not be used. It is included for backwards compatibility with GML 2. Use SurfacePropertyType instead.
07078:             *  A property that has a polygon as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
07079:             *      &lt;/annotation&gt;
07080:             *      &lt;sequence minOccurs="0"&gt;
07081:             *          &lt;element ref="gml:Polygon"/&gt;
07082:             *      &lt;/sequence&gt;
07083:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
07084:             *          &lt;annotation&gt;
07085:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
07086:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
07087:             *          &lt;/annotation&gt;
07088:             *      &lt;/attributeGroup&gt;
07089:             *  &lt;/complexType&gt;
07090:             *
07091:             *    </code>
07092:             *   </pre>
07093:             * </p>
07094:             *
07095:             * @generated
07096:             */
07097:            public static final AttributeType POLYGONPROPERTYTYPE_TYPE = AttributeTypeFactory
07098:                    .newAttributeType("PolygonPropertyType", Polygon.class);
07099:
07100:            /**
07101:             * <p>
07102:             *  <pre>
07103:             *   <code>
07104:             *  &lt;complexType name="LinearCSType"&gt;
07105:             *      &lt;annotation&gt;
07106:             *          &lt;documentation&gt;A one-dimensional coordinate system that consists of the points that lie on the single axis described. The associated ordinate is the distance from the specified origin to the point along the axis. Example: usage of the line feature representing a road to describe points on or along that road. A LinearCS shall have one usesAxis association. &lt;/documentation&gt;
07107:             *      &lt;/annotation&gt;
07108:             *      &lt;complexContent&gt;
07109:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
07110:             *      &lt;/complexContent&gt;
07111:             *  &lt;/complexType&gt;
07112:             *
07113:             *    </code>
07114:             *   </pre>
07115:             * </p>
07116:             *
07117:             * @generated
07118:             */
07119:            public static final AttributeType LINEARCSTYPE_TYPE = AttributeTypeFactory
07120:                    .newAttributeType("LinearCSType", java.lang.Object.class);
07121:
07122:            /**
07123:             * <p>
07124:             *  <pre>
07125:             *   <code>
07126:             *  &lt;complexType name="ImageCRSType"&gt;
07127:             *      &lt;annotation&gt;
07128:             *          &lt;documentation&gt;An engineering coordinate reference system applied to locations in images. Image coordinate reference systems are treated as a separate sub-type because a separate user community exists for images with its own terms of reference. &lt;/documentation&gt;
07129:             *      &lt;/annotation&gt;
07130:             *      &lt;complexContent&gt;
07131:             *          &lt;extension base="gml:AbstractReferenceSystemType"&gt;
07132:             *              &lt;sequence&gt;
07133:             *                  &lt;choice&gt;
07134:             *                      &lt;element ref="gml:usesCartesianCS"/&gt;
07135:             *                      &lt;element ref="gml:usesObliqueCartesianCS"/&gt;
07136:             *                  &lt;/choice&gt;
07137:             *                  &lt;element ref="gml:usesImageDatum"/&gt;
07138:             *              &lt;/sequence&gt;
07139:             *          &lt;/extension&gt;
07140:             *      &lt;/complexContent&gt;
07141:             *  &lt;/complexType&gt;
07142:             *
07143:             *    </code>
07144:             *   </pre>
07145:             * </p>
07146:             *
07147:             * @generated
07148:             */
07149:            public static final AttributeType IMAGECRSTYPE_TYPE = AttributeTypeFactory
07150:                    .newAttributeType("ImageCRSType", java.lang.Object.class);
07151:
07152:            /**
07153:             * <p>
07154:             *  <pre>
07155:             *   <code>
07156:             *  &lt;complexType name="IndirectEntryType"&gt;
07157:             *      &lt;annotation&gt;
07158:             *          &lt;documentation&gt;An entry in a dictionary of definitions that contains a GML object which references a remote definition object. This entry is expected to be convenient in allowing multiple elements in one XML document to contain short (abbreviated XPointer) references, which are resolved to an external definition provided in a Dictionary element in the same XML document. Specialized descendents of this dictionaryEntry might be restricted in an application schema to allow only including specified types of definitions as valid entries in a dictionary. &lt;/documentation&gt;
07159:             *      &lt;/annotation&gt;
07160:             *      &lt;sequence&gt;
07161:             *          &lt;element ref="gml:DefinitionProxy"/&gt;
07162:             *      &lt;/sequence&gt;
07163:             *  &lt;/complexType&gt;
07164:             *
07165:             *    </code>
07166:             *   </pre>
07167:             * </p>
07168:             *
07169:             * @generated
07170:             */
07171:            public static final AttributeType INDIRECTENTRYTYPE_TYPE = AttributeTypeFactory
07172:                    .newAttributeType("IndirectEntryType",
07173:                            java.lang.Object.class);
07174:
07175:            /**
07176:             * <p>
07177:             *  <pre>
07178:             *   <code>
07179:             *  &lt;complexType name="MultiSurfacePropertyType"&gt;
07180:             *      &lt;annotation&gt;
07181:             *          &lt;documentation&gt;A property that has a collection of surfaces as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
07182:             *      &lt;/annotation&gt;
07183:             *      &lt;sequence minOccurs="0"&gt;
07184:             *          &lt;element ref="gml:MultiSurface"/&gt;
07185:             *      &lt;/sequence&gt;
07186:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
07187:             *          &lt;annotation&gt;
07188:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
07189:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
07190:             *          &lt;/annotation&gt;
07191:             *      &lt;/attributeGroup&gt;
07192:             *  &lt;/complexType&gt;
07193:             *
07194:             *    </code>
07195:             *   </pre>
07196:             * </p>
07197:             *
07198:             * @generated
07199:             */
07200:            public static final AttributeType MULTISURFACEPROPERTYTYPE_TYPE = AttributeTypeFactory
07201:                    .newAttributeType("MultiSurfacePropertyType",
07202:                            MultiPolygon.class);
07203:
07204:            /**
07205:             * <p>
07206:             *  <pre>
07207:             *   <code>
07208:             *  &lt;complexType name="ConversionToPreferredUnitType"&gt;
07209:             *      &lt;annotation&gt;
07210:             *          &lt;documentation&gt;Relation of a unit to the preferred unit for this quantity type, specified by an arithmetic conversion (scaling and/or offset). A preferred unit is either a base unit or a derived unit selected for all units of one quantity type. The mandatory attribute "uom" shall reference the preferred unit that this conversion applies to. The conversion is specified by one of two alternative elements: "factor" or "formula".&lt;/documentation&gt;
07211:             *      &lt;/annotation&gt;
07212:             *      &lt;complexContent&gt;
07213:             *          &lt;extension base="gml:UnitOfMeasureType"&gt;
07214:             *              &lt;choice&gt;
07215:             *                  &lt;element name="factor" type="double"&gt;
07216:             *                      &lt;annotation&gt;
07217:             *                          &lt;documentation&gt;Specification of the scale factor by which a value using this unit of measure can be multiplied to obtain the corresponding value using the preferred unit of measure.&lt;/documentation&gt;
07218:             *                      &lt;/annotation&gt;
07219:             *                  &lt;/element&gt;
07220:             *                  &lt;element name="formula" type="gml:FormulaType"&gt;
07221:             *                      &lt;annotation&gt;
07222:             *                          &lt;documentation&gt;Specification of the formula by which a value using this unit of measure can be converted to obtain the corresponding value using the preferred unit of measure.&lt;/documentation&gt;
07223:             *                      &lt;/annotation&gt;
07224:             *                  &lt;/element&gt;
07225:             *              &lt;/choice&gt;
07226:             *          &lt;/extension&gt;
07227:             *      &lt;/complexContent&gt;
07228:             *  &lt;/complexType&gt;
07229:             *
07230:             *    </code>
07231:             *   </pre>
07232:             * </p>
07233:             *
07234:             * @generated
07235:             */
07236:            public static final AttributeType CONVERSIONTOPREFERREDUNITTYPE_TYPE = AttributeTypeFactory
07237:                    .newAttributeType("ConversionToPreferredUnitType",
07238:                            java.lang.Object.class);
07239:
07240:            /**
07241:             * <p>
07242:             *  <pre>
07243:             *   <code>
07244:             *  &lt;complexType name="MultiCurveDomainType"&gt;
07245:             *      &lt;complexContent&gt;
07246:             *          &lt;restriction base="gml:DomainSetType"&gt;
07247:             *              &lt;sequence minOccurs="0"&gt;
07248:             *                  &lt;element ref="gml:MultiCurve"/&gt;
07249:             *              &lt;/sequence&gt;
07250:             *              &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
07251:             *          &lt;/restriction&gt;
07252:             *      &lt;/complexContent&gt;
07253:             *  &lt;/complexType&gt;
07254:             *
07255:             *    </code>
07256:             *   </pre>
07257:             * </p>
07258:             *
07259:             * @generated
07260:             */
07261:            public static final AttributeType MULTICURVEDOMAINTYPE_TYPE = AttributeTypeFactory
07262:                    .newAttributeType("MultiCurveDomainType",
07263:                            java.lang.Object.class);
07264:
07265:            /**
07266:             * <p>
07267:             *  <pre>
07268:             *   <code>
07269:             *  &lt;complexType name="TopoPointType"&gt;
07270:             *      &lt;annotation&gt;
07271:             *          &lt;documentation&gt;The intended use of TopoPoint is to appear within a point feature to express the structural and possibly geometric relationships of this point to other features via shared node definitions. Note the orientation assigned to the directedNode has no meaning in this context. It is preserved for symmetry with the types and elements which follow.&lt;/documentation&gt;
07272:             *      &lt;/annotation&gt;
07273:             *      &lt;complexContent&gt;
07274:             *          &lt;extension base="gml:AbstractTopologyType"&gt;
07275:             *              &lt;sequence&gt;
07276:             *                  &lt;element ref="gml:directedNode"/&gt;
07277:             *              &lt;/sequence&gt;
07278:             *          &lt;/extension&gt;
07279:             *      &lt;/complexContent&gt;
07280:             *  &lt;/complexType&gt;
07281:             *
07282:             *    </code>
07283:             *   </pre>
07284:             * </p>
07285:             *
07286:             * @generated
07287:             */
07288:            public static final AttributeType TOPOPOINTTYPE_TYPE = AttributeTypeFactory
07289:                    .newAttributeType("TopoPointType", java.lang.Object.class);
07290:
07291:            /**
07292:             * <p>
07293:             *  <pre>
07294:             *   <code>
07295:             *  &lt;complexType abstract="true" name="AbstractTopologyType"&gt;
07296:             *      &lt;complexContent&gt;
07297:             *          &lt;extension base="gml:AbstractGMLType"/&gt;
07298:             *      &lt;/complexContent&gt;
07299:             *  &lt;/complexType&gt;
07300:             *
07301:             *    </code>
07302:             *   </pre>
07303:             * </p>
07304:             *
07305:             * @generated
07306:             */
07307:            public static final AttributeType ABSTRACTTOPOLOGYTYPE_TYPE = AttributeTypeFactory
07308:                    .newAttributeType("AbstractTopologyType",
07309:                            java.lang.Object.class);
07310:
07311:            /**
07312:             * <p>
07313:             *  <pre>
07314:             *   <code>
07315:             *  &lt;complexType name="ArcByBulgeType"&gt;
07316:             *      &lt;annotation&gt;
07317:             *          &lt;documentation&gt;An ArcByBulge is an arc string with only one arc unit, i.e. two control points and one bulge.&lt;/documentation&gt;
07318:             *      &lt;/annotation&gt;
07319:             *      &lt;complexContent&gt;
07320:             *          &lt;restriction base="gml:ArcStringByBulgeType"&gt;
07321:             *              &lt;sequence&gt;
07322:             *                  &lt;choice&gt;
07323:             *                      &lt;annotation&gt;
07324:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
07325:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
07326:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be two.&lt;/documentation&gt;
07327:             *                      &lt;/annotation&gt;
07328:             *                      &lt;choice maxOccurs="2" minOccurs="2"&gt;
07329:             *                          &lt;element ref="gml:pos"/&gt;
07330:             *                          &lt;element ref="gml:pointProperty"/&gt;
07331:             *                          &lt;element ref="gml:pointRep"&gt;
07332:             *                              &lt;annotation&gt;
07333:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
07334:             *                              &lt;/annotation&gt;
07335:             *                          &lt;/element&gt;
07336:             *                      &lt;/choice&gt;
07337:             *                      &lt;element ref="gml:posList"/&gt;
07338:             *                      &lt;element ref="gml:coordinates"&gt;
07339:             *                          &lt;annotation&gt;
07340:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
07341:             *                          &lt;/annotation&gt;
07342:             *                      &lt;/element&gt;
07343:             *                  &lt;/choice&gt;
07344:             *                  &lt;element name="bulge" type="double"&gt;
07345:             *                      &lt;annotation&gt;
07346:             *                          &lt;documentation&gt;The bulge controls the offset of each arc's midpoint. The "bulge" is the real number multiplier for the normal that determines the offset direction of the midpoint of each arc. The length of the bulge sequence is exactly 1 less than the length of the control point array, since a bulge is needed for each pair of adjacent points in the control point array. The bulge is not given by a distance, since it is simply a multiplier for the normal.
07347:             *  The midpoint of the resulting arc is given by: midPoint = ((startPoint + endPoint)/2.0) + bulge*normal&lt;/documentation&gt;
07348:             *                      &lt;/annotation&gt;
07349:             *                  &lt;/element&gt;
07350:             *                  &lt;element name="normal" type="gml:VectorType"&gt;
07351:             *                      &lt;annotation&gt;
07352:             *                          &lt;documentation&gt;The attribute "normal" is a vector normal (perpendicular) to the chord of the arc, the line joining the first and last
07353:             *  point of the arc. In a 2D coordinate system, there are only two possible directions for the normal, and it is often given as a signed real, indicating its length, with a positive sign indicating a left turn angle from the chord line, and a negative sign indicating a right turn from the chord. In 3D, the normal determines the plane of the arc, along with the start and endPoint of the arc.
07354:             *  The normal is usually a unit vector, but this is not absolutely necessary. If the normal is a zero vector, the geometric object becomes equivalent to the straight line between the two end points. The length of the normal sequence is exactly the same as for the bulge sequence, 1 less than the control point sequence length.&lt;/documentation&gt;
07355:             *                      &lt;/annotation&gt;
07356:             *                  &lt;/element&gt;
07357:             *              &lt;/sequence&gt;
07358:             *              &lt;attribute fixed="1" name="numArc" type="integer" use="optional"&gt;
07359:             *                  &lt;annotation&gt;
07360:             *                      &lt;documentation&gt;An arc is an arc string consiting of a single arc, the attribute is fixed to "1".&lt;/documentation&gt;
07361:             *                  &lt;/annotation&gt;
07362:             *              &lt;/attribute&gt;
07363:             *          &lt;/restriction&gt;
07364:             *      &lt;/complexContent&gt;
07365:             *  &lt;/complexType&gt;
07366:             *
07367:             *    </code>
07368:             *   </pre>
07369:             * </p>
07370:             *
07371:             * @generated
07372:             */
07373:            public static final AttributeType ARCBYBULGETYPE_TYPE = AttributeTypeFactory
07374:                    .newAttributeType("ArcByBulgeType", java.lang.Object.class);
07375:
07376:            /**
07377:             * <p>
07378:             *  <pre>
07379:             *   <code>
07380:             *  &lt;complexType name="VerticalCRSType"&gt;
07381:             *      &lt;annotation&gt;
07382:             *          &lt;documentation&gt;A 1D coordinate reference system used for recording heights or depths. Vertical CRSs make use of the direction of gravity to define the concept of height or depth, but the relationship with gravity may not be straightforward. By implication, ellipsoidal heights (h) cannot be captured in a vertical coordinate reference system. Ellipsoidal heights cannot exist independently, but only as an inseparable part of a 3D coordinate tuple defined in a geographic 3D coordinate reference system. &lt;/documentation&gt;
07383:             *      &lt;/annotation&gt;
07384:             *      &lt;complexContent&gt;
07385:             *          &lt;extension base="gml:AbstractReferenceSystemType"&gt;
07386:             *              &lt;sequence&gt;
07387:             *                  &lt;element ref="gml:usesVerticalCS"/&gt;
07388:             *                  &lt;element ref="gml:usesVerticalDatum"/&gt;
07389:             *              &lt;/sequence&gt;
07390:             *          &lt;/extension&gt;
07391:             *      &lt;/complexContent&gt;
07392:             *  &lt;/complexType&gt;
07393:             *
07394:             *    </code>
07395:             *   </pre>
07396:             * </p>
07397:             *
07398:             * @generated
07399:             */
07400:            public static final AttributeType VERTICALCRSTYPE_TYPE = AttributeTypeFactory
07401:                    .newAttributeType("VerticalCRSType", java.lang.Object.class);
07402:
07403:            /**
07404:             * <p>
07405:             *  <pre>
07406:             *   <code>
07407:             *  &lt;complexType name="ArcByCenterPointType"&gt;
07408:             *      &lt;annotation&gt;
07409:             *          &lt;documentation&gt;This variant of the arc requires that the points on the arc have to be computed instead of storing the coordinates directly. The control point is the center point of the arc plus the radius and the bearing at start and end. This represenation can be used only in 2D.&lt;/documentation&gt;
07410:             *      &lt;/annotation&gt;
07411:             *      &lt;complexContent&gt;
07412:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
07413:             *              &lt;sequence&gt;
07414:             *                  &lt;choice&gt;
07415:             *                      &lt;annotation&gt;
07416:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
07417:             *  1. A "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) element. The "pos" element contains a center point that is only part of this curve segment, a "pointProperty" element contains a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
07418:             *  2. The "posList" element can be used to specifiy the coordinates of the center point, too. The number of direct positions in the list must be one.&lt;/documentation&gt;
07419:             *                      &lt;/annotation&gt;
07420:             *                      &lt;choice&gt;
07421:             *                          &lt;element ref="gml:pos"/&gt;
07422:             *                          &lt;element ref="gml:pointProperty"/&gt;
07423:             *                          &lt;element ref="gml:pointRep"&gt;
07424:             *                              &lt;annotation&gt;
07425:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
07426:             *                              &lt;/annotation&gt;
07427:             *                          &lt;/element&gt;
07428:             *                      &lt;/choice&gt;
07429:             *                      &lt;element ref="gml:posList"/&gt;
07430:             *                      &lt;element ref="gml:coordinates"&gt;
07431:             *                          &lt;annotation&gt;
07432:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
07433:             *                          &lt;/annotation&gt;
07434:             *                      &lt;/element&gt;
07435:             *                  &lt;/choice&gt;
07436:             *                  &lt;element name="radius" type="gml:LengthType"&gt;
07437:             *                      &lt;annotation&gt;
07438:             *                          &lt;documentation&gt;The radius of the arc.&lt;/documentation&gt;
07439:             *                      &lt;/annotation&gt;
07440:             *                  &lt;/element&gt;
07441:             *                  &lt;element minOccurs="0" name="startAngle" type="gml:AngleType"&gt;
07442:             *                      &lt;annotation&gt;
07443:             *                          &lt;documentation&gt;The bearing of the arc at the start.&lt;/documentation&gt;
07444:             *                      &lt;/annotation&gt;
07445:             *                  &lt;/element&gt;
07446:             *                  &lt;element minOccurs="0" name="endAngle" type="gml:AngleType"&gt;
07447:             *                      &lt;annotation&gt;
07448:             *                          &lt;documentation&gt;The bearing of the arc at the end.&lt;/documentation&gt;
07449:             *                      &lt;/annotation&gt;
07450:             *                  &lt;/element&gt;
07451:             *              &lt;/sequence&gt;
07452:             *              &lt;attribute fixed="circularArcCenterPointWithRadius"
07453:             *                  name="interpolation" type="gml:CurveInterpolationType"&gt;
07454:             *                  &lt;annotation&gt;
07455:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism
07456:             *  uses the control points and control parameters to determine the position of this curve segment. For an ArcByCenterPoint the interpolation is fixed as "circularArcCenterPointWithRadius".&lt;/documentation&gt;
07457:             *                  &lt;/annotation&gt;
07458:             *              &lt;/attribute&gt;
07459:             *              &lt;attribute fixed="1" name="numArc" type="integer" use="required"&gt;
07460:             *                  &lt;annotation&gt;
07461:             *                      &lt;documentation&gt;Since this type describes always a single arc, the attribute is fixed to "1".&lt;/documentation&gt;
07462:             *                  &lt;/annotation&gt;
07463:             *              &lt;/attribute&gt;
07464:             *          &lt;/extension&gt;
07465:             *      &lt;/complexContent&gt;
07466:             *  &lt;/complexType&gt;
07467:             *
07468:             *    </code>
07469:             *   </pre>
07470:             * </p>
07471:             *
07472:             * @generated
07473:             */
07474:            public static final AttributeType ARCBYCENTERPOINTTYPE_TYPE = AttributeTypeFactory
07475:                    .newAttributeType("ArcByCenterPointType",
07476:                            java.lang.Object.class);
07477:
07478:            /**
07479:             * <p>
07480:             *  <pre>
07481:             *   <code>
07482:             *  &lt;simpleType name="FileValueModelType"&gt;
07483:             *      &lt;annotation&gt;
07484:             *          &lt;documentation&gt;List of codes that identifies the file structure model for records stored in files.&lt;/documentation&gt;
07485:             *      &lt;/annotation&gt;
07486:             *      &lt;restriction base="string"&gt;
07487:             *          &lt;enumeration value="Record Interleaved"/&gt;
07488:             *      &lt;/restriction&gt;
07489:             *  &lt;/simpleType&gt;
07490:             *
07491:             *    </code>
07492:             *   </pre>
07493:             * </p>
07494:             *
07495:             * @generated
07496:             */
07497:            public static final AttributeType FILEVALUEMODELTYPE_TYPE = AttributeTypeFactory
07498:                    .newAttributeType("FileValueModelType",
07499:                            java.lang.Object.class);
07500:
07501:            /**
07502:             * <p>
07503:             *  <pre>
07504:             *   <code>
07505:             *  &lt;complexType name="ObliqueCartesianCSRefType"&gt;
07506:             *      &lt;annotation&gt;
07507:             *          &lt;documentation&gt;Association to an oblique-Cartesian coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
07508:             *      &lt;/annotation&gt;
07509:             *      &lt;sequence minOccurs="0"&gt;
07510:             *          &lt;element ref="gml:ObliqueCartesianCS"/&gt;
07511:             *      &lt;/sequence&gt;
07512:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
07513:             *  &lt;/complexType&gt;
07514:             *
07515:             *    </code>
07516:             *   </pre>
07517:             * </p>
07518:             *
07519:             * @generated
07520:             */
07521:            public static final AttributeType OBLIQUECARTESIANCSREFTYPE_TYPE = AttributeTypeFactory
07522:                    .newAttributeType("ObliqueCartesianCSRefType",
07523:                            java.lang.Object.class);
07524:
07525:            /**
07526:             * <p>
07527:             *  <pre>
07528:             *   <code>
07529:             *  &lt;complexType abstract="true" name="AbstractReferenceSystemBaseType"&gt;
07530:             *      &lt;annotation&gt;
07531:             *          &lt;documentation&gt;Basic encoding for reference system objects, simplifying and restricting the DefinitionType as needed.&lt;/documentation&gt;
07532:             *      &lt;/annotation&gt;
07533:             *      &lt;complexContent&gt;
07534:             *          &lt;restriction base="gml:DefinitionType"&gt;
07535:             *              &lt;sequence&gt;
07536:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
07537:             *                  &lt;element ref="gml:srsName"/&gt;
07538:             *              &lt;/sequence&gt;
07539:             *              &lt;attribute ref="gml:id" use="required"/&gt;
07540:             *          &lt;/restriction&gt;
07541:             *      &lt;/complexContent&gt;
07542:             *  &lt;/complexType&gt;
07543:             *
07544:             *    </code>
07545:             *   </pre>
07546:             * </p>
07547:             *
07548:             * @generated
07549:             */
07550:            public static final AttributeType ABSTRACTREFERENCESYSTEMBASETYPE_TYPE = AttributeTypeFactory
07551:                    .newAttributeType("AbstractReferenceSystemBaseType",
07552:                            java.lang.Object.class);
07553:
07554:            /**
07555:             * <p>
07556:             *  <pre>
07557:             *   <code>
07558:             *  &lt;complexType name="TimePrimitivePropertyType"&gt;
07559:             *      &lt;sequence minOccurs="0"&gt;
07560:             *          &lt;element ref="gml:_TimePrimitive"/&gt;
07561:             *      &lt;/sequence&gt;
07562:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
07563:             *  &lt;/complexType&gt;
07564:             *
07565:             *    </code>
07566:             *   </pre>
07567:             * </p>
07568:             *
07569:             * @generated
07570:             */
07571:            public static final AttributeType TIMEPRIMITIVEPROPERTYTYPE_TYPE = AttributeTypeFactory
07572:                    .newAttributeType("TimePrimitivePropertyType",
07573:                            java.lang.Object.class);
07574:
07575:            /**
07576:             * <p>
07577:             *  <pre>
07578:             *   <code>
07579:             *  &lt;complexType abstract="true" name="AbstractCoverageType"&gt;
07580:             *      &lt;annotation&gt;
07581:             *          &lt;documentation&gt;Abstract element which acts as the head of a substitution group for coverages. Note that a coverage is a GML feature.&lt;/documentation&gt;
07582:             *      &lt;/annotation&gt;
07583:             *      &lt;complexContent&gt;
07584:             *          &lt;extension base="gml:AbstractFeatureType"&gt;
07585:             *              &lt;sequence&gt;
07586:             *                  &lt;element ref="gml:domainSet"/&gt;
07587:             *                  &lt;element ref="gml:rangeSet"/&gt;
07588:             *              &lt;/sequence&gt;
07589:             *              &lt;attribute name="dimension" type="positiveInteger" use="optional"/&gt;
07590:             *          &lt;/extension&gt;
07591:             *      &lt;/complexContent&gt;
07592:             *  &lt;/complexType&gt;
07593:             *
07594:             *    </code>
07595:             *   </pre>
07596:             * </p>
07597:             *
07598:             * @generated
07599:             */
07600:            public static final AttributeType ABSTRACTCOVERAGETYPE_TYPE = AttributeTypeFactory
07601:                    .newAttributeType("AbstractCoverageType",
07602:                            java.lang.Object.class);
07603:
07604:            /**
07605:             * <p>
07606:             *  <pre>
07607:             *   <code>
07608:             *  &lt;complexType abstract="true" name="BoundedFeatureType"&gt;
07609:             *      &lt;annotation&gt;
07610:             *          &lt;documentation&gt;Makes boundedBy mandatory&lt;/documentation&gt;
07611:             *      &lt;/annotation&gt;
07612:             *      &lt;complexContent&gt;
07613:             *          &lt;restriction base="gml:AbstractFeatureType"&gt;
07614:             *              &lt;sequence&gt;
07615:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
07616:             *                  &lt;element ref="gml:boundedBy"/&gt;
07617:             *                  &lt;element minOccurs="0" ref="gml:location"&gt;
07618:             *                      &lt;annotation&gt;
07619:             *                          &lt;appinfo&gt;deprecated&lt;/appinfo&gt;
07620:             *                          &lt;documentation&gt;deprecated in GML version 3.1&lt;/documentation&gt;
07621:             *                      &lt;/annotation&gt;
07622:             *                  &lt;/element&gt;
07623:             *              &lt;/sequence&gt;
07624:             *          &lt;/restriction&gt;
07625:             *      &lt;/complexContent&gt;
07626:             *  &lt;/complexType&gt;
07627:             *
07628:             *    </code>
07629:             *   </pre>
07630:             * </p>
07631:             *
07632:             * @generated
07633:             */
07634:            public static final AttributeType BOUNDEDFEATURETYPE_TYPE = AttributeTypeFactory
07635:                    .newAttributeType("BoundedFeatureType",
07636:                            java.lang.Object.class);
07637:
07638:            /**
07639:             * <p>
07640:             *  <pre>
07641:             *   <code>
07642:             *  &lt;complexType abstract="true" name="AbstractCoordinateSystemBaseType"&gt;
07643:             *      &lt;annotation&gt;
07644:             *          &lt;documentation&gt;Basic encoding for coordinate system objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
07645:             *      &lt;/annotation&gt;
07646:             *      &lt;complexContent&gt;
07647:             *          &lt;restriction base="gml:DefinitionType"&gt;
07648:             *              &lt;sequence&gt;
07649:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
07650:             *                  &lt;element ref="gml:csName"/&gt;
07651:             *              &lt;/sequence&gt;
07652:             *              &lt;attribute ref="gml:id" use="required"/&gt;
07653:             *          &lt;/restriction&gt;
07654:             *      &lt;/complexContent&gt;
07655:             *  &lt;/complexType&gt;
07656:             *
07657:             *    </code>
07658:             *   </pre>
07659:             * </p>
07660:             *
07661:             * @generated
07662:             */
07663:            public static final AttributeType ABSTRACTCOORDINATESYSTEMBASETYPE_TYPE = AttributeTypeFactory
07664:                    .newAttributeType("AbstractCoordinateSystemBaseType",
07665:                            java.lang.Object.class);
07666:
07667:            /**
07668:             * <p>
07669:             *  <pre>
07670:             *   <code>
07671:             *  &lt;complexType abstract="true" name="AbstractStyleType"&gt;
07672:             *      &lt;annotation&gt;
07673:             *          &lt;documentation&gt;[complexType of] The value of the top-level property. It is an abstract element. Used as the head element of the substitution group for extensibility purposes.&lt;/documentation&gt;
07674:             *      &lt;/annotation&gt;
07675:             *      &lt;complexContent&gt;
07676:             *          &lt;extension base="gml:AbstractGMLType"/&gt;
07677:             *      &lt;/complexContent&gt;
07678:             *  &lt;/complexType&gt;
07679:             *
07680:             *    </code>
07681:             *   </pre>
07682:             * </p>
07683:             *
07684:             * @generated
07685:             */
07686:            public static final AttributeType ABSTRACTSTYLETYPE_TYPE = AttributeTypeFactory
07687:                    .newAttributeType("AbstractStyleType",
07688:                            java.lang.Object.class);
07689:
07690:            /**
07691:             * <p>
07692:             *  <pre>
07693:             *   <code>
07694:             *  &lt;complexType name="GeneralTransformationRefType"&gt;
07695:             *      &lt;annotation&gt;
07696:             *          &lt;documentation&gt;Association to a general transformation, either referencing or containing the definition of that transformation. &lt;/documentation&gt;
07697:             *      &lt;/annotation&gt;
07698:             *      &lt;sequence minOccurs="0"&gt;
07699:             *          &lt;element ref="gml:_GeneralTransformation"/&gt;
07700:             *      &lt;/sequence&gt;
07701:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
07702:             *  &lt;/complexType&gt;
07703:             *
07704:             *    </code>
07705:             *   </pre>
07706:             * </p>
07707:             *
07708:             * @generated
07709:             */
07710:            public static final AttributeType GENERALTRANSFORMATIONREFTYPE_TYPE = AttributeTypeFactory
07711:                    .newAttributeType("GeneralTransformationRefType",
07712:                            java.lang.Object.class);
07713:
07714:            /**
07715:             * <p>
07716:             *  <pre>
07717:             *   <code>
07718:             *  &lt;simpleType name="NCNameList"&gt;
07719:             *      &lt;annotation&gt;
07720:             *          &lt;documentation&gt;A set of values, representing a list of token with the lexical value space of NCName. The tokens are seperated by whitespace.&lt;/documentation&gt;
07721:             *      &lt;/annotation&gt;
07722:             *      &lt;list itemType="NCName"/&gt;
07723:             *  &lt;/simpleType&gt;
07724:             *
07725:             *    </code>
07726:             *   </pre>
07727:             * </p>
07728:             *
07729:             * @generated
07730:             */
07731:            public static final AttributeType NCNAMELIST_TYPE = AttributeTypeFactory
07732:                    .newAttributeType("NCNameList", java.lang.Object.class);
07733:
07734:            /**
07735:             * <p>
07736:             *  <pre>
07737:             *   <code>
07738:             *  &lt;complexType name="ProjectedCRSType"&gt;
07739:             *      &lt;annotation&gt;
07740:             *          &lt;documentation&gt;A 2D coordinate reference system used to approximate the shape of the earth on a planar surface, but in such a way that the distortion that is inherent to the approximation is carefully controlled and known. Distortion correction is commonly applied to calculated bearings and distances to produce values that are a close match to actual field values. &lt;/documentation&gt;
07741:             *      &lt;/annotation&gt;
07742:             *      &lt;complexContent&gt;
07743:             *          &lt;extension base="gml:AbstractGeneralDerivedCRSType"&gt;
07744:             *              &lt;sequence&gt;
07745:             *                  &lt;element ref="gml:usesCartesianCS"/&gt;
07746:             *              &lt;/sequence&gt;
07747:             *          &lt;/extension&gt;
07748:             *      &lt;/complexContent&gt;
07749:             *  &lt;/complexType&gt;
07750:             *
07751:             *    </code>
07752:             *   </pre>
07753:             * </p>
07754:             *
07755:             * @generated
07756:             */
07757:            public static final AttributeType PROJECTEDCRSTYPE_TYPE = AttributeTypeFactory
07758:                    .newAttributeType("ProjectedCRSType",
07759:                            java.lang.Object.class);
07760:
07761:            /**
07762:             * <p>
07763:             *  <pre>
07764:             *   <code>
07765:             *  &lt;complexType name="UnitDefinitionType"&gt;
07766:             *      &lt;annotation&gt;
07767:             *          &lt;documentation&gt;Definition of a unit of measure (or uom). The definition includes a quantityType property, which indicates the phenomenon to which the units apply, and a catalogSymbol, which gives the short symbol used for this unit. This element is used when the relationship of this unit to other units or units systems is unknown.&lt;/documentation&gt;
07768:             *      &lt;/annotation&gt;
07769:             *      &lt;complexContent&gt;
07770:             *          &lt;extension base="gml:DefinitionType"&gt;
07771:             *              &lt;sequence&gt;
07772:             *                  &lt;element ref="gml:quantityType"/&gt;
07773:             *                  &lt;element minOccurs="0" ref="gml:catalogSymbol"/&gt;
07774:             *              &lt;/sequence&gt;
07775:             *          &lt;/extension&gt;
07776:             *      &lt;/complexContent&gt;
07777:             *  &lt;/complexType&gt;
07778:             *
07779:             *    </code>
07780:             *   </pre>
07781:             * </p>
07782:             *
07783:             * @generated
07784:             */
07785:            public static final AttributeType UNITDEFINITIONTYPE_TYPE = AttributeTypeFactory
07786:                    .newAttributeType("UnitDefinitionType",
07787:                            java.lang.Object.class);
07788:
07789:            /**
07790:             * <p>
07791:             *  <pre>
07792:             *   <code>
07793:             *  &lt;complexType abstract="true" name="AbstractFeatureType"&gt;
07794:             *      &lt;annotation&gt;
07795:             *          &lt;documentation&gt;An abstract feature provides a set of common properties, including id, metaDataProperty, name and description inherited from AbstractGMLType, plus boundedBy.    A concrete feature type must derive from this type and specify additional  properties in an application schema. A feature must possess an identifying attribute ('id' - 'fid' has been deprecated).&lt;/documentation&gt;
07796:             *      &lt;/annotation&gt;
07797:             *      &lt;complexContent&gt;
07798:             *          &lt;extension base="gml:AbstractGMLType"&gt;
07799:             *              &lt;sequence&gt;
07800:             *                  &lt;element minOccurs="0" ref="gml:boundedBy"/&gt;
07801:             *                  &lt;element minOccurs="0" ref="gml:location"&gt;
07802:             *                      &lt;annotation&gt;
07803:             *                          &lt;appinfo&gt;deprecated&lt;/appinfo&gt;
07804:             *                          &lt;documentation&gt;deprecated in GML version 3.1&lt;/documentation&gt;
07805:             *                      &lt;/annotation&gt;
07806:             *                  &lt;/element&gt;
07807:             *                  &lt;!-- additional properties must be specified in an application schema --&gt;
07808:             *              &lt;/sequence&gt;
07809:             *          &lt;/extension&gt;
07810:             *      &lt;/complexContent&gt;
07811:             *  &lt;/complexType&gt;
07812:             *
07813:             *    </code>
07814:             *   </pre>
07815:             * </p>
07816:             *
07817:             * @generated
07818:             */
07819:            public static final AttributeType ABSTRACTFEATURETYPE_TYPE = AttributeTypeFactory
07820:                    .newAttributeType("AbstractFeatureType", Feature.class);
07821:
07822:            /**
07823:             * <p>
07824:             *  <pre>
07825:             *   <code>
07826:             *  &lt;complexType name="ArcType"&gt;
07827:             *      &lt;annotation&gt;
07828:             *          &lt;documentation&gt;An Arc is an arc string with only one arc unit, i.e. three control points.&lt;/documentation&gt;
07829:             *      &lt;/annotation&gt;
07830:             *      &lt;complexContent&gt;
07831:             *          &lt;restriction base="gml:ArcStringType"&gt;
07832:             *              &lt;sequence&gt;
07833:             *                  &lt;choice&gt;
07834:             *                      &lt;annotation&gt;
07835:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
07836:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
07837:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be three.&lt;/documentation&gt;
07838:             *                      &lt;/annotation&gt;
07839:             *                      &lt;choice maxOccurs="3" minOccurs="3"&gt;
07840:             *                          &lt;element ref="gml:pos"/&gt;
07841:             *                          &lt;element ref="gml:pointProperty"/&gt;
07842:             *                          &lt;element ref="gml:pointRep"&gt;
07843:             *                              &lt;annotation&gt;
07844:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
07845:             *                              &lt;/annotation&gt;
07846:             *                          &lt;/element&gt;
07847:             *                      &lt;/choice&gt;
07848:             *                      &lt;element ref="gml:posList"/&gt;
07849:             *                      &lt;element ref="gml:coordinates"&gt;
07850:             *                          &lt;annotation&gt;
07851:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
07852:             *                          &lt;/annotation&gt;
07853:             *                      &lt;/element&gt;
07854:             *                  &lt;/choice&gt;
07855:             *              &lt;/sequence&gt;
07856:             *              &lt;attribute fixed="1" name="numArc" type="integer" use="optional"&gt;
07857:             *                  &lt;annotation&gt;
07858:             *                      &lt;documentation&gt;An arc is an arc string consiting of a single arc, the attribute is fixed to "1".&lt;/documentation&gt;
07859:             *                  &lt;/annotation&gt;
07860:             *              &lt;/attribute&gt;
07861:             *          &lt;/restriction&gt;
07862:             *      &lt;/complexContent&gt;
07863:             *  &lt;/complexType&gt;
07864:             *
07865:             *    </code>
07866:             *   </pre>
07867:             * </p>
07868:             *
07869:             * @generated
07870:             */
07871:            public static final AttributeType ARCTYPE_TYPE = AttributeTypeFactory
07872:                    .newAttributeType("ArcType", java.lang.Object.class);
07873:
07874:            /**
07875:             * <p>
07876:             *  <pre>
07877:             *   <code>
07878:             *  &lt;simpleType name="integerOrNull"&gt;
07879:             *      &lt;annotation&gt;
07880:             *          &lt;documentation&gt;Union of the XML Schema integer type and the GML Nulltype.  An element which uses this type may have content which is either an integer or a value from Nulltype&lt;/documentation&gt;
07881:             *      &lt;/annotation&gt;
07882:             *      &lt;union memberTypes="gml:NullEnumeration integer anyURI"/&gt;
07883:             *  &lt;/simpleType&gt;
07884:             *
07885:             *    </code>
07886:             *   </pre>
07887:             * </p>
07888:             *
07889:             * @generated
07890:             */
07891:            public static final AttributeType INTEGERORNULL_TYPE = AttributeTypeFactory
07892:                    .newAttributeType("integerOrNull", java.lang.Object.class);
07893:
07894:            /**
07895:             * <p>
07896:             *  <pre>
07897:             *   <code>
07898:             *  &lt;complexType name="GridFunctionType"&gt;
07899:             *      &lt;annotation&gt;
07900:             *          &lt;documentation&gt;Defines how values in the domain are mapped to the range set. The start point and the sequencing rule are specified here.&lt;/documentation&gt;
07901:             *      &lt;/annotation&gt;
07902:             *      &lt;sequence&gt;
07903:             *          &lt;element minOccurs="0" name="sequenceRule" type="gml:SequenceRuleType"&gt;
07904:             *              &lt;annotation&gt;
07905:             *                  &lt;documentation&gt;If absent, the implied value is "Linear".&lt;/documentation&gt;
07906:             *              &lt;/annotation&gt;
07907:             *          &lt;/element&gt;
07908:             *          &lt;element minOccurs="0" name="startPoint" type="gml:integerList"&gt;
07909:             *              &lt;annotation&gt;
07910:             *                  &lt;documentation&gt;Index position of the first grid post, which must lie somwhere in the GridEnvelope.  If absent, the startPoint is equal to the value of gridEnvelope::low from the grid definition.&lt;/documentation&gt;
07911:             *              &lt;/annotation&gt;
07912:             *          &lt;/element&gt;
07913:             *      &lt;/sequence&gt;
07914:             *  &lt;/complexType&gt;
07915:             *
07916:             *    </code>
07917:             *   </pre>
07918:             * </p>
07919:             *
07920:             * @generated
07921:             */
07922:            public static final AttributeType GRIDFUNCTIONTYPE_TYPE = AttributeTypeFactory
07923:                    .newAttributeType("GridFunctionType",
07924:                            java.lang.Object.class);
07925:
07926:            /**
07927:             * <p>
07928:             *  <pre>
07929:             *   <code>
07930:             *  &lt;simpleType name="SymbolTypeEnumeration"&gt;
07931:             *      &lt;annotation&gt;
07932:             *          &lt;documentation&gt;Used to specify the type of the symbol used.&lt;/documentation&gt;
07933:             *      &lt;/annotation&gt;
07934:             *      &lt;restriction base="string"&gt;
07935:             *          &lt;enumeration value="svg"/&gt;
07936:             *          &lt;enumeration value="xpath"/&gt;
07937:             *          &lt;enumeration value="other"/&gt;
07938:             *      &lt;/restriction&gt;
07939:             *  &lt;/simpleType&gt;
07940:             *
07941:             *    </code>
07942:             *   </pre>
07943:             * </p>
07944:             *
07945:             * @generated
07946:             */
07947:            public static final AttributeType SYMBOLTYPEENUMERATION_TYPE = AttributeTypeFactory
07948:                    .newAttributeType("SymbolTypeEnumeration",
07949:                            java.lang.Object.class);
07950:
07951:            /**
07952:             * <p>
07953:             *  <pre>
07954:             *   <code>
07955:             *  &lt;complexType name="SurfacePatchArrayPropertyType"&gt;
07956:             *      &lt;annotation&gt;
07957:             *          &lt;documentation&gt;A container for an array of surface patches.&lt;/documentation&gt;
07958:             *      &lt;/annotation&gt;
07959:             *      &lt;sequence maxOccurs="unbounded" minOccurs="0"&gt;
07960:             *          &lt;element ref="gml:_SurfacePatch"/&gt;
07961:             *      &lt;/sequence&gt;
07962:             *  &lt;/complexType&gt;
07963:             *
07964:             *    </code>
07965:             *   </pre>
07966:             * </p>
07967:             *
07968:             * @generated
07969:             */
07970:            public static final AttributeType SURFACEPATCHARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
07971:                    .newAttributeType("SurfacePatchArrayPropertyType",
07972:                            java.lang.Object.class);
07973:
07974:            /**
07975:             * <p>
07976:             *  <pre>
07977:             *   <code>
07978:             *  &lt;complexType name="GraphStylePropertyType"&gt;
07979:             *      &lt;annotation&gt;
07980:             *          &lt;documentation/&gt;
07981:             *      &lt;/annotation&gt;
07982:             *      &lt;sequence&gt;
07983:             *          &lt;element minOccurs="0" ref="gml:GraphStyle"/&gt;
07984:             *      &lt;/sequence&gt;
07985:             *      &lt;attribute name="about" type="anyURI" use="optional"/&gt;
07986:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
07987:             *  &lt;/complexType&gt;
07988:             *
07989:             *    </code>
07990:             *   </pre>
07991:             * </p>
07992:             *
07993:             * @generated
07994:             */
07995:            public static final AttributeType GRAPHSTYLEPROPERTYTYPE_TYPE = AttributeTypeFactory
07996:                    .newAttributeType("GraphStylePropertyType",
07997:                            java.lang.Object.class);
07998:
07999:            /**
08000:             * <p>
08001:             *  <pre>
08002:             *   <code>
08003:             *  &lt;complexType name="OperationMethodRefType"&gt;
08004:             *      &lt;annotation&gt;
08005:             *          &lt;documentation&gt;Association to a concrete general-purpose operation method, either referencing or containing the definition of that method. &lt;/documentation&gt;
08006:             *      &lt;/annotation&gt;
08007:             *      &lt;sequence minOccurs="0"&gt;
08008:             *          &lt;element ref="gml:OperationMethod"/&gt;
08009:             *      &lt;/sequence&gt;
08010:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08011:             *  &lt;/complexType&gt;
08012:             *
08013:             *    </code>
08014:             *   </pre>
08015:             * </p>
08016:             *
08017:             * @generated
08018:             */
08019:            public static final AttributeType OPERATIONMETHODREFTYPE_TYPE = AttributeTypeFactory
08020:                    .newAttributeType("OperationMethodRefType",
08021:                            java.lang.Object.class);
08022:
08023:            /**
08024:             * <p>
08025:             *  <pre>
08026:             *   <code>
08027:             *  &lt;simpleType name="TimePositionUnion"&gt;
08028:             *      &lt;annotation&gt;
08029:             *          &lt;documentation xml:lang="en"&gt;The ISO 19108:2002 hierarchy of subtypes for temporal position are collapsed
08030:             *        by defining a union of XML Schema simple types for indicating temporal position relative
08031:             *        to a specific reference system.
08032:             *
08033:             *        Dates and dateTime may be indicated with varying degrees of precision.
08034:             *        dateTime by itself does not allow right-truncation, except for fractions of seconds.
08035:             *        When used with non-Gregorian calendars based on years, months, days,
08036:             *        the same lexical representation should still be used, with leading zeros added if the
08037:             *        year value would otherwise have fewer than four digits.
08038:             *
08039:             *        An ordinal position may be referenced via URI identifying the definition of an ordinal era.
08040:             *
08041:             *        A time coordinate value is indicated as a decimal (e.g. UNIX time, GPS calendar).&lt;/documentation&gt;
08042:             *      &lt;/annotation&gt;
08043:             *      &lt;union memberTypes="gml:CalDate time dateTime anyURI decimal"/&gt;
08044:             *  &lt;/simpleType&gt;
08045:             *
08046:             *    </code>
08047:             *   </pre>
08048:             * </p>
08049:             *
08050:             * @generated
08051:             */
08052:            public static final AttributeType TIMEPOSITIONUNION_TYPE = AttributeTypeFactory
08053:                    .newAttributeType("TimePositionUnion",
08054:                            java.lang.Object.class);
08055:
08056:            /**
08057:             * <p>
08058:             *  <pre>
08059:             *   <code>
08060:             *  &lt;complexType name="GeometryStyleType"&gt;
08061:             *      &lt;annotation&gt;
08062:             *          &lt;documentation&gt;[complexType of] The style descriptor for geometries of a feature.&lt;/documentation&gt;
08063:             *      &lt;/annotation&gt;
08064:             *      &lt;complexContent&gt;
08065:             *          &lt;extension base="gml:BaseStyleDescriptorType"&gt;
08066:             *              &lt;sequence&gt;
08067:             *                  &lt;choice&gt;
08068:             *                      &lt;element ref="gml:symbol"/&gt;
08069:             *                      &lt;element name="style" type="string"&gt;
08070:             *                          &lt;annotation&gt;
08071:             *                              &lt;appinfo&gt;deprecated&lt;/appinfo&gt;
08072:             *                              &lt;documentation&gt;Deprecated in GML version 3.1.0. Use symbol with inline content instead.&lt;/documentation&gt;
08073:             *                          &lt;/annotation&gt;
08074:             *                      &lt;/element&gt;
08075:             *                  &lt;/choice&gt;
08076:             *                  &lt;element minOccurs="0" ref="gml:labelStyle"/&gt;
08077:             *              &lt;/sequence&gt;
08078:             *              &lt;attribute name="geometryProperty" type="string"/&gt;
08079:             *              &lt;attribute name="geometryType" type="string"/&gt;
08080:             *          &lt;/extension&gt;
08081:             *      &lt;/complexContent&gt;
08082:             *  &lt;/complexType&gt;
08083:             *
08084:             *    </code>
08085:             *   </pre>
08086:             * </p>
08087:             *
08088:             * @generated
08089:             */
08090:            public static final AttributeType GEOMETRYSTYLETYPE_TYPE = AttributeTypeFactory
08091:                    .newAttributeType("GeometryStyleType",
08092:                            java.lang.Object.class);
08093:
08094:            /**
08095:             * <p>
08096:             *  <pre>
08097:             *   <code>
08098:             *  &lt;complexType name="GeometryStylePropertyType"&gt;
08099:             *      &lt;annotation&gt;
08100:             *          &lt;documentation/&gt;
08101:             *      &lt;/annotation&gt;
08102:             *      &lt;sequence&gt;
08103:             *          &lt;element minOccurs="0" ref="gml:GeometryStyle"/&gt;
08104:             *      &lt;/sequence&gt;
08105:             *      &lt;attribute name="about" type="anyURI" use="optional"/&gt;
08106:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08107:             *  &lt;/complexType&gt;
08108:             *
08109:             *    </code>
08110:             *   </pre>
08111:             * </p>
08112:             *
08113:             * @generated
08114:             */
08115:            public static final AttributeType GEOMETRYSTYLEPROPERTYTYPE_TYPE = AttributeTypeFactory
08116:                    .newAttributeType("GeometryStylePropertyType",
08117:                            java.lang.Object.class);
08118:
08119:            /**
08120:             * <p>
08121:             *  <pre>
08122:             *   <code>
08123:             *  &lt;simpleType name="CountExtentType"&gt;
08124:             *      &lt;annotation&gt;
08125:             *          &lt;documentation&gt;Restriction of list type to store a 2-point range of frequency values. If one member is a null, then this is a single ended interval.&lt;/documentation&gt;
08126:             *      &lt;/annotation&gt;
08127:             *      &lt;restriction base="gml:integerOrNullList"&gt;
08128:             *          &lt;length value="2"/&gt;
08129:             *      &lt;/restriction&gt;
08130:             *  &lt;/simpleType&gt;
08131:             *
08132:             *    </code>
08133:             *   </pre>
08134:             * </p>
08135:             *
08136:             * @generated
08137:             */
08138:            public static final AttributeType COUNTEXTENTTYPE_TYPE = AttributeTypeFactory
08139:                    .newAttributeType("CountExtentType", java.lang.Object.class);
08140:
08141:            /**
08142:             * <p>
08143:             *  <pre>
08144:             *   <code>
08145:             *  &lt;complexType final="#all" name="TimeIntervalLengthType"&gt;
08146:             *      &lt;annotation&gt;
08147:             *          &lt;documentation xml:lang="en"&gt;This type extends the built-in xsd:decimal simple type to allow floating-point
08148:             *        values for temporal length. According to  the ISO 11404 model you have to use
08149:             *        positiveInteger together with appropriate values for radix and factor. The
08150:             *        resolution of the time interval is to one radix ^(-factor) of the specified
08151:             *        time unit (e.g. unit="second", radix="10", factor="3" specifies a resolution
08152:             *        of milliseconds). It is a subtype of TimeDurationType.&lt;/documentation&gt;
08153:             *      &lt;/annotation&gt;
08154:             *      &lt;simpleContent&gt;
08155:             *          &lt;extension base="decimal"&gt;
08156:             *              &lt;attribute name="unit" type="gml:TimeUnitType" use="required"/&gt;
08157:             *              &lt;attribute name="radix" type="positiveInteger" use="optional"/&gt;
08158:             *              &lt;attribute name="factor" type="integer" use="optional"/&gt;
08159:             *          &lt;/extension&gt;
08160:             *      &lt;/simpleContent&gt;
08161:             *  &lt;/complexType&gt;
08162:             *
08163:             *    </code>
08164:             *   </pre>
08165:             * </p>
08166:             *
08167:             * @generated
08168:             */
08169:            public static final AttributeType TIMEINTERVALLENGTHTYPE_TYPE = AttributeTypeFactory
08170:                    .newAttributeType("TimeIntervalLengthType",
08171:                            java.lang.Object.class);
08172:
08173:            /**
08174:             * <p>
08175:             *  <pre>
08176:             *   <code>
08177:             *  &lt;complexType name="MultiPointDomainType"&gt;
08178:             *      &lt;complexContent&gt;
08179:             *          &lt;restriction base="gml:DomainSetType"&gt;
08180:             *              &lt;sequence minOccurs="0"&gt;
08181:             *                  &lt;element ref="gml:MultiPoint"/&gt;
08182:             *              &lt;/sequence&gt;
08183:             *              &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08184:             *          &lt;/restriction&gt;
08185:             *      &lt;/complexContent&gt;
08186:             *  &lt;/complexType&gt;
08187:             *
08188:             *    </code>
08189:             *   </pre>
08190:             * </p>
08191:             *
08192:             * @generated
08193:             */
08194:            public static final AttributeType MULTIPOINTDOMAINTYPE_TYPE = AttributeTypeFactory
08195:                    .newAttributeType("MultiPointDomainType",
08196:                            java.lang.Object.class);
08197:
08198:            /**
08199:             * <p>
08200:             *  <pre>
08201:             *   <code>
08202:             *  &lt;complexType abstract="true" name="AbstractTimeTopologyPrimitiveType"&gt;
08203:             *      &lt;annotation&gt;
08204:             *          &lt;documentation xml:lang="en"&gt;The element "complex" carries a reference to the complex containing this primitive.&lt;/documentation&gt;
08205:             *      &lt;/annotation&gt;
08206:             *      &lt;complexContent&gt;
08207:             *          &lt;extension base="gml:AbstractTimePrimitiveType"&gt;
08208:             *              &lt;sequence&gt;
08209:             *                  &lt;element minOccurs="0" name="complex" type="gml:ReferenceType"/&gt;
08210:             *              &lt;/sequence&gt;
08211:             *          &lt;/extension&gt;
08212:             *      &lt;/complexContent&gt;
08213:             *  &lt;/complexType&gt;
08214:             *
08215:             *    </code>
08216:             *   </pre>
08217:             * </p>
08218:             *
08219:             * @generated
08220:             */
08221:            public static final AttributeType ABSTRACTTIMETOPOLOGYPRIMITIVETYPE_TYPE = AttributeTypeFactory
08222:                    .newAttributeType("AbstractTimeTopologyPrimitiveType",
08223:                            java.lang.Object.class);
08224:
08225:            /**
08226:             * <p>
08227:             *  <pre>
08228:             *   <code>
08229:             *  &lt;complexType name="GeometryArrayPropertyType"&gt;
08230:             *      &lt;annotation&gt;
08231:             *          &lt;documentation&gt;A container for an array of geometry elements. The elements are always contained in the array property,
08232:             *                          referencing geometry elements or arrays of geometry elements is not supported.&lt;/documentation&gt;
08233:             *      &lt;/annotation&gt;
08234:             *      &lt;sequence&gt;
08235:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_Geometry"/&gt;
08236:             *      &lt;/sequence&gt;
08237:             *  &lt;/complexType&gt;
08238:             *
08239:             *    </code>
08240:             *   </pre>
08241:             * </p>
08242:             *
08243:             * @generated
08244:             */
08245:            public static final AttributeType GEOMETRYARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
08246:                    .newAttributeType("GeometryArrayPropertyType",
08247:                            java.lang.Object.class);
08248:
08249:            /**
08250:             * <p>
08251:             *  <pre>
08252:             *   <code>
08253:             *  &lt;simpleType name="NameList"&gt;
08254:             *      &lt;annotation&gt;
08255:             *          &lt;documentation&gt;XML List based on XML Schema Name type.  An element of this type contains a space-separated list of Name values&lt;/documentation&gt;
08256:             *      &lt;/annotation&gt;
08257:             *      &lt;list itemType="Name"/&gt;
08258:             *  &lt;/simpleType&gt;
08259:             *
08260:             *    </code>
08261:             *   </pre>
08262:             * </p>
08263:             *
08264:             * @generated
08265:             */
08266:            public static final AttributeType NAMELIST_TYPE = AttributeTypeFactory
08267:                    .newAttributeType("NameList", java.lang.Object.class);
08268:
08269:            /**
08270:             * <p>
08271:             *  <pre>
08272:             *   <code>
08273:             *  &lt;complexType name="TimeInstantType"&gt;
08274:             *      &lt;annotation&gt;
08275:             *          &lt;documentation&gt;Omit back-pointers begunBy, endedBy.&lt;/documentation&gt;
08276:             *      &lt;/annotation&gt;
08277:             *      &lt;complexContent&gt;
08278:             *          &lt;extension base="gml:AbstractTimeGeometricPrimitiveType"&gt;
08279:             *              &lt;sequence&gt;
08280:             *                  &lt;element ref="gml:timePosition"/&gt;
08281:             *              &lt;/sequence&gt;
08282:             *          &lt;/extension&gt;
08283:             *      &lt;/complexContent&gt;
08284:             *  &lt;/complexType&gt;
08285:             *
08286:             *    </code>
08287:             *   </pre>
08288:             * </p>
08289:             *
08290:             * @generated
08291:             */
08292:            public static final AttributeType TIMEINSTANTTYPE_TYPE = AttributeTypeFactory
08293:                    .newAttributeType("TimeInstantType", java.lang.Object.class);
08294:
08295:            /**
08296:             * <p>
08297:             *  <pre>
08298:             *   <code>
08299:             *  &lt;complexType abstract="true" name="AbstractTimeReferenceSystemType"&gt;
08300:             *      &lt;annotation&gt;
08301:             *          &lt;documentation xml:lang="en"&gt;A value in the time domain is measured relative to a temporal reference system. Common
08302:             *          types of reference systems include calendars, ordinal temporal reference systems, and
08303:             *          temporal coordinate systems (time elapsed since some epoch, e.g. UNIX time).&lt;/documentation&gt;
08304:             *      &lt;/annotation&gt;
08305:             *      &lt;complexContent&gt;
08306:             *          &lt;extension base="gml:DefinitionType"&gt;
08307:             *              &lt;sequence&gt;
08308:             *                  &lt;element minOccurs="0" name="domainOfValidity" type="string"/&gt;
08309:             *              &lt;/sequence&gt;
08310:             *          &lt;/extension&gt;
08311:             *      &lt;/complexContent&gt;
08312:             *  &lt;/complexType&gt;
08313:             *
08314:             *    </code>
08315:             *   </pre>
08316:             * </p>
08317:             *
08318:             * @generated
08319:             */
08320:            public static final AttributeType ABSTRACTTIMEREFERENCESYSTEMTYPE_TYPE = AttributeTypeFactory
08321:                    .newAttributeType("AbstractTimeReferenceSystemType",
08322:                            java.lang.Object.class);
08323:
08324:            /**
08325:             * <p>
08326:             *  <pre>
08327:             *   <code>
08328:             *  &lt;complexType name="TimeGeometricPrimitivePropertyType"&gt;
08329:             *      &lt;sequence minOccurs="0"&gt;
08330:             *          &lt;element ref="gml:_TimeGeometricPrimitive"/&gt;
08331:             *      &lt;/sequence&gt;
08332:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08333:             *  &lt;/complexType&gt;
08334:             *
08335:             *    </code>
08336:             *   </pre>
08337:             * </p>
08338:             *
08339:             * @generated
08340:             */
08341:            public static final AttributeType TIMEGEOMETRICPRIMITIVEPROPERTYTYPE_TYPE = AttributeTypeFactory
08342:                    .newAttributeType("TimeGeometricPrimitivePropertyType",
08343:                            java.lang.Object.class);
08344:
08345:            /**
08346:             * <p>
08347:             *  <pre>
08348:             *   <code>
08349:             *  &lt;complexType name="PolyhedralSurfaceType"&gt;
08350:             *      &lt;annotation&gt;
08351:             *          &lt;documentation&gt;A polyhedral surface is a surface composed
08352:             *     of polygon surfaces connected along their common boundary
08353:             *     curves. This differs from the surface type only in the
08354:             *     restriction on the types of surface patches acceptable.&lt;/documentation&gt;
08355:             *      &lt;/annotation&gt;
08356:             *      &lt;complexContent&gt;
08357:             *          &lt;restriction base="gml:SurfaceType"&gt;
08358:             *              &lt;sequence&gt;
08359:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
08360:             *                  &lt;element ref="gml:polygonPatches"&gt;
08361:             *                      &lt;annotation&gt;
08362:             *                          &lt;documentation&gt;This property encapsulates the patches of
08363:             *        the polyhedral surface.&lt;/documentation&gt;
08364:             *                      &lt;/annotation&gt;
08365:             *                  &lt;/element&gt;
08366:             *              &lt;/sequence&gt;
08367:             *          &lt;/restriction&gt;
08368:             *      &lt;/complexContent&gt;
08369:             *  &lt;/complexType&gt;
08370:             *
08371:             *    </code>
08372:             *   </pre>
08373:             * </p>
08374:             *
08375:             * @generated
08376:             */
08377:            public static final AttributeType POLYHEDRALSURFACETYPE_TYPE = AttributeTypeFactory
08378:                    .newAttributeType("PolyhedralSurfaceType",
08379:                            java.lang.Object.class);
08380:
08381:            /**
08382:             * <p>
08383:             *  <pre>
08384:             *   <code>
08385:             *  &lt;complexType abstract="true" name="AbstractGMLType"&gt;
08386:             *      &lt;annotation&gt;
08387:             *          &lt;documentation&gt;All complexContent GML elements are directly or indirectly derived from this abstract supertype
08388:             *          to establish a hierarchy of GML types that may be distinguished from other XML types by their ancestry.
08389:             *          Elements in this hierarchy may have an ID and are thus referenceable.&lt;/documentation&gt;
08390:             *      &lt;/annotation&gt;
08391:             *      &lt;sequence&gt;
08392:             *          &lt;group ref="gml:StandardObjectProperties"/&gt;
08393:             *      &lt;/sequence&gt;
08394:             *      &lt;attribute ref="gml:id" use="optional"/&gt;
08395:             *  &lt;/complexType&gt;
08396:             *
08397:             *    </code>
08398:             *   </pre>
08399:             * </p>
08400:             *
08401:             * @generated
08402:             */
08403:            public static final AttributeType ABSTRACTGMLTYPE_TYPE = AttributeTypeFactory
08404:                    .newAttributeType("AbstractGMLType", java.lang.Object.class);
08405:
08406:            /**
08407:             * <p>
08408:             *  <pre>
08409:             *   <code>
08410:             *  &lt;complexType name="FeaturePropertyType"&gt;
08411:             *      &lt;annotation&gt;
08412:             *          &lt;documentation&gt;Container for a feature - follow gml:AssociationType pattern.&lt;/documentation&gt;
08413:             *      &lt;/annotation&gt;
08414:             *      &lt;sequence minOccurs="0"&gt;
08415:             *          &lt;element ref="gml:_Feature"/&gt;
08416:             *      &lt;/sequence&gt;
08417:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08418:             *  &lt;/complexType&gt;
08419:             *
08420:             *    </code>
08421:             *   </pre>
08422:             * </p>
08423:             *
08424:             * @generated
08425:             */
08426:            public static final AttributeType FEATUREPROPERTYTYPE_TYPE = AttributeTypeFactory
08427:                    .newAttributeType("FeaturePropertyType",
08428:                            java.lang.Object.class);
08429:
08430:            /**
08431:             * <p>
08432:             *  <pre>
08433:             *   <code>
08434:             *  &lt;complexType name="MultiPointPropertyType"&gt;
08435:             *      &lt;annotation&gt;
08436:             *          &lt;documentation&gt;A property that has a collection of points as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
08437:             *      &lt;/annotation&gt;
08438:             *      &lt;sequence minOccurs="0"&gt;
08439:             *          &lt;element ref="gml:MultiPoint"/&gt;
08440:             *      &lt;/sequence&gt;
08441:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
08442:             *          &lt;annotation&gt;
08443:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
08444:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
08445:             *          &lt;/annotation&gt;
08446:             *      &lt;/attributeGroup&gt;
08447:             *  &lt;/complexType&gt;
08448:             *
08449:             *    </code>
08450:             *   </pre>
08451:             * </p>
08452:             *
08453:             * @generated
08454:             */
08455:            public static final AttributeType MULTIPOINTPROPERTYTYPE_TYPE = AttributeTypeFactory
08456:                    .newAttributeType("MultiPointPropertyType",
08457:                            MultiPoint.class);
08458:
08459:            /**
08460:             * <p>
08461:             *  <pre>
08462:             *   <code>
08463:             *  &lt;complexType name="RelatedTimeType"&gt;
08464:             *      &lt;complexContent&gt;
08465:             *          &lt;extension base="gml:TimePrimitivePropertyType"&gt;
08466:             *              &lt;attribute name="relativePosition"&gt;
08467:             *                  &lt;simpleType&gt;
08468:             *                      &lt;restriction base="string"&gt;
08469:             *                          &lt;enumeration value="Before"/&gt;
08470:             *                          &lt;enumeration value="After"/&gt;
08471:             *                          &lt;enumeration value="Begins"/&gt;
08472:             *                          &lt;enumeration value="Ends"/&gt;
08473:             *                          &lt;enumeration value="During"/&gt;
08474:             *                          &lt;enumeration value="Equals"/&gt;
08475:             *                          &lt;enumeration value="Contains"/&gt;
08476:             *                          &lt;enumeration value="Overlaps"/&gt;
08477:             *                          &lt;enumeration value="Meets"/&gt;
08478:             *                          &lt;enumeration value="OverlappedBy"/&gt;
08479:             *                          &lt;enumeration value="MetBy"/&gt;
08480:             *                          &lt;enumeration value="BegunBy"/&gt;
08481:             *                          &lt;enumeration value="EndedBy"/&gt;
08482:             *                      &lt;/restriction&gt;
08483:             *                  &lt;/simpleType&gt;
08484:             *              &lt;/attribute&gt;
08485:             *          &lt;/extension&gt;
08486:             *      &lt;/complexContent&gt;
08487:             *  &lt;/complexType&gt;
08488:             *
08489:             *    </code>
08490:             *   </pre>
08491:             * </p>
08492:             *
08493:             * @generated
08494:             */
08495:            public static final AttributeType RELATEDTIMETYPE_TYPE = AttributeTypeFactory
08496:                    .newAttributeType("RelatedTimeType", java.lang.Object.class);
08497:
08498:            /**
08499:             * <p>
08500:             *  <pre>
08501:             *   <code>
08502:             *  &lt;complexType name="RangeSetType"&gt;
08503:             *      &lt;choice&gt;
08504:             *          &lt;element maxOccurs="unbounded" ref="gml:ValueArray"&gt;
08505:             *              &lt;annotation&gt;
08506:             *                  &lt;documentation&gt;each member _Value holds a tuple or "row" from the equivalent table&lt;/documentation&gt;
08507:             *              &lt;/annotation&gt;
08508:             *          &lt;/element&gt;
08509:             *          &lt;group maxOccurs="unbounded" ref="gml:ScalarValueList"&gt;
08510:             *              &lt;annotation&gt;
08511:             *                  &lt;documentation&gt;each list holds the complete set of one scalar component from the values - i.e. a "column" from the equivalent table&lt;/documentation&gt;
08512:             *              &lt;/annotation&gt;
08513:             *          &lt;/group&gt;
08514:             *          &lt;element ref="gml:DataBlock"&gt;
08515:             *              &lt;annotation&gt;
08516:             *                  &lt;documentation&gt;Its tuple list holds the values as space-separated tuples each of which contains comma-separated components, and the tuple structure is specified using the rangeParameters property.&lt;/documentation&gt;
08517:             *              &lt;/annotation&gt;
08518:             *          &lt;/element&gt;
08519:             *          &lt;element ref="gml:File"&gt;
08520:             *              &lt;annotation&gt;
08521:             *                  &lt;documentation&gt;a reference to an external source for the data, together with a description of how that external source is structured&lt;/documentation&gt;
08522:             *              &lt;/annotation&gt;
08523:             *          &lt;/element&gt;
08524:             *      &lt;/choice&gt;
08525:             *  &lt;/complexType&gt;
08526:             *
08527:             *    </code>
08528:             *   </pre>
08529:             * </p>
08530:             *
08531:             * @generated
08532:             */
08533:            public static final AttributeType RANGESETTYPE_TYPE = AttributeTypeFactory
08534:                    .newAttributeType("RangeSetType", java.lang.Object.class);
08535:
08536:            /**
08537:             * <p>
08538:             *  <pre>
08539:             *   <code>
08540:             *  &lt;complexType name="DictionaryType"&gt;
08541:             *      &lt;annotation&gt;
08542:             *          &lt;documentation&gt;A non-abstract bag that is specialized for use as a dictionary which contains a set of definitions. These definitions are referenced from other places, in the same and different XML documents. In this restricted type, the inherited optional "description" element can be used for a description of this dictionary. The inherited optional "name" element can be used for the name(s) of this dictionary. The inherited "metaDataProperty" elements can be used to reference or contain more information about this dictionary. The inherited required gml:id attribute allows the dictionary to be referenced using this handle. &lt;/documentation&gt;
08543:             *      &lt;/annotation&gt;
08544:             *      &lt;complexContent&gt;
08545:             *          &lt;extension base="gml:DefinitionType"&gt;
08546:             *              &lt;sequence maxOccurs="unbounded" minOccurs="0"&gt;
08547:             *                  &lt;choice&gt;
08548:             *                      &lt;element ref="gml:dictionaryEntry"&gt;
08549:             *                          &lt;annotation&gt;
08550:             *                              &lt;documentation&gt;An entry in this dictionary. The content of an entry can itself be a lower level dictionary or definition collection. This element follows the standard GML property model, so the value may be provided directly or by reference. Note that if the value is provided by reference, this definition does not carry a handle (gml:id) in this context, so does not allow external references to this specific entry in this context. When used in this way the referenced definition will usually be in a dictionary in the same XML document. &lt;/documentation&gt;
08551:             *                          &lt;/annotation&gt;
08552:             *                      &lt;/element&gt;
08553:             *                      &lt;element ref="gml:indirectEntry"&gt;
08554:             *                          &lt;annotation&gt;
08555:             *                              &lt;documentation&gt;An identified reference to a remote entry in this dictionary, to be used when this entry should be identified to allow external references to this specific entry. &lt;/documentation&gt;
08556:             *                          &lt;/annotation&gt;
08557:             *                      &lt;/element&gt;
08558:             *                  &lt;/choice&gt;
08559:             *              &lt;/sequence&gt;
08560:             *          &lt;/extension&gt;
08561:             *      &lt;/complexContent&gt;
08562:             *  &lt;/complexType&gt;
08563:             *
08564:             *    </code>
08565:             *   </pre>
08566:             * </p>
08567:             *
08568:             * @generated
08569:             */
08570:            public static final AttributeType DICTIONARYTYPE_TYPE = AttributeTypeFactory
08571:                    .newAttributeType("DictionaryType", java.lang.Object.class);
08572:
08573:            /**
08574:             * <p>
08575:             *  <pre>
08576:             *   <code>
08577:             *  &lt;complexType name="AbstractGriddedSurfaceType"&gt;
08578:             *      &lt;annotation&gt;
08579:             *          &lt;documentation&gt;A gridded surface is a parametric curve
08580:             *     surface derived from a rectangular grid in the parameter
08581:             *     space. The rows from this grid are control points for
08582:             *     horizontal surface curves; the columns are control points
08583:             *     for vertical surface curves. The working assumption is that
08584:             *     for a pair of parametric co-ordinates (s, t) that the
08585:             *     horizontal curves for each integer offset are calculated
08586:             *     and evaluated at "s". The defines a sequence of control
08587:             *     points:
08588:             *
08589:             *     cn(s) : s  1 .....columns
08590:             *
08591:             *     From this sequence a vertical curve is calculated for "s",
08592:             *     and evaluated at "t". In most cases, the order of
08593:             *     calculation (horizontal-vertical vs. vertical-horizontal)
08594:             *     does not make a difference. Where it does, the horizontal-
08595:             *     vertical order shall be the one used.
08596:             *
08597:             *     Logically, any pair of curve interpolation types can lead
08598:             *     to a subtype of GriddedSurface. The following clauses
08599:             *     define some most commonly encountered surfaces that can
08600:             *     be represented in this manner.&lt;/documentation&gt;
08601:             *      &lt;/annotation&gt;
08602:             *      &lt;complexContent&gt;
08603:             *          &lt;extension base="gml:AbstractParametricCurveSurfaceType"&gt;
08604:             *              &lt;sequence&gt;
08605:             *                  &lt;group ref="gml:PointGrid"&gt;
08606:             *                      &lt;annotation&gt;
08607:             *                          &lt;documentation&gt;This is the double indexed sequence
08608:             *         of control points, given in row major form.
08609:             *         NOTE! There in no assumption made about the shape
08610:             *         of the grid.
08611:             *         For example, the positions need not effect a "21/2D"
08612:             *         surface, consecutive points may be equal in any or all
08613:             *         of the ordinates. Further, the curves in either or both
08614:             *         directions may close.&lt;/documentation&gt;
08615:             *                      &lt;/annotation&gt;
08616:             *                  &lt;/group&gt;
08617:             *                  &lt;element minOccurs="0" name="rows" type="integer"&gt;
08618:             *                      &lt;annotation&gt;
08619:             *                          &lt;documentation&gt;The attribute rows gives the number
08620:             *           of rows in the parameter grid.&lt;/documentation&gt;
08621:             *                      &lt;/annotation&gt;
08622:             *                  &lt;/element&gt;
08623:             *                  &lt;element minOccurs="0" name="columns" type="integer"&gt;
08624:             *                      &lt;annotation&gt;
08625:             *                          &lt;documentation&gt;The attribute columns gives the number
08626:             *          of columns in the parameter grid.&lt;/documentation&gt;
08627:             *                      &lt;/annotation&gt;
08628:             *                  &lt;/element&gt;
08629:             *              &lt;/sequence&gt;
08630:             *          &lt;/extension&gt;
08631:             *      &lt;/complexContent&gt;
08632:             *  &lt;/complexType&gt;
08633:             *
08634:             *    </code>
08635:             *   </pre>
08636:             * </p>
08637:             *
08638:             * @generated
08639:             */
08640:            public static final AttributeType ABSTRACTGRIDDEDSURFACETYPE_TYPE = AttributeTypeFactory
08641:                    .newAttributeType("AbstractGriddedSurfaceType",
08642:                            java.lang.Object.class);
08643:
08644:            /**
08645:             * <p>
08646:             *  <pre>
08647:             *   <code>
08648:             *  &lt;complexType name="CurveType"&gt;
08649:             *      &lt;annotation&gt;
08650:             *          &lt;documentation&gt;Curve is a 1-dimensional primitive. Curves are continuous, connected, and have a measurable length in terms of the coordinate system.
08651:             *                                  A curve is composed of one or more curve segments. Each curve segment within a curve may be defined using a different interpolation method. The curve segments are connected to one another, with the end point of each segment except the last being the start point of the next segment in the segment list.
08652:             *                                  The orientation of the curve is positive.&lt;/documentation&gt;
08653:             *      &lt;/annotation&gt;
08654:             *      &lt;complexContent&gt;
08655:             *          &lt;extension base="gml:AbstractCurveType"&gt;
08656:             *              &lt;sequence&gt;
08657:             *                  &lt;element ref="gml:segments"&gt;
08658:             *                      &lt;annotation&gt;
08659:             *                          &lt;documentation&gt;This element encapsulates the segments of the curve.&lt;/documentation&gt;
08660:             *                      &lt;/annotation&gt;
08661:             *                  &lt;/element&gt;
08662:             *              &lt;/sequence&gt;
08663:             *          &lt;/extension&gt;
08664:             *      &lt;/complexContent&gt;
08665:             *  &lt;/complexType&gt;
08666:             *
08667:             *    </code>
08668:             *   </pre>
08669:             * </p>
08670:             *
08671:             * @generated
08672:             */
08673:            public static final AttributeType CURVETYPE_TYPE = AttributeTypeFactory
08674:                    .newAttributeType("CurveType", MultiLineString.class);
08675:
08676:            /**
08677:             * <p>
08678:             *  <pre>
08679:             *   <code>
08680:             *  &lt;complexType name="VerticalDatumRefType"&gt;
08681:             *      &lt;annotation&gt;
08682:             *          &lt;documentation&gt;Association to a vertical datum, either referencing or containing the definition of that datum. &lt;/documentation&gt;
08683:             *      &lt;/annotation&gt;
08684:             *      &lt;sequence minOccurs="0"&gt;
08685:             *          &lt;element ref="gml:VerticalDatum"/&gt;
08686:             *      &lt;/sequence&gt;
08687:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08688:             *  &lt;/complexType&gt;
08689:             *
08690:             *    </code>
08691:             *   </pre>
08692:             * </p>
08693:             *
08694:             * @generated
08695:             */
08696:            public static final AttributeType VERTICALDATUMREFTYPE_TYPE = AttributeTypeFactory
08697:                    .newAttributeType("VerticalDatumRefType",
08698:                            java.lang.Object.class);
08699:
08700:            /**
08701:             * <p>
08702:             *  <pre>
08703:             *   <code>
08704:             *  &lt;complexType name="GeodeticDatumType"&gt;
08705:             *      &lt;annotation&gt;
08706:             *          &lt;documentation&gt;A geodetic datum defines the precise location and orientation in 3-dimensional space of a defined ellipsoid (or sphere) that approximates the shape of the earth, or of a Cartesian coordinate system centered in this ellipsoid (or sphere). &lt;/documentation&gt;
08707:             *      &lt;/annotation&gt;
08708:             *      &lt;complexContent&gt;
08709:             *          &lt;extension base="gml:AbstractDatumType"&gt;
08710:             *              &lt;sequence&gt;
08711:             *                  &lt;element ref="gml:usesPrimeMeridian"/&gt;
08712:             *                  &lt;element ref="gml:usesEllipsoid"/&gt;
08713:             *              &lt;/sequence&gt;
08714:             *          &lt;/extension&gt;
08715:             *      &lt;/complexContent&gt;
08716:             *  &lt;/complexType&gt;
08717:             *
08718:             *    </code>
08719:             *   </pre>
08720:             * </p>
08721:             *
08722:             * @generated
08723:             */
08724:            public static final AttributeType GEODETICDATUMTYPE_TYPE = AttributeTypeFactory
08725:                    .newAttributeType("GeodeticDatumType",
08726:                            java.lang.Object.class);
08727:
08728:            /**
08729:             * <p>
08730:             *  <pre>
08731:             *   <code>
08732:             *  &lt;complexType name="LineStringType"&gt;
08733:             *      &lt;annotation&gt;
08734:             *          &lt;documentation&gt;A LineString is a special curve that consists of a single segment with linear interpolation. It is defined by two or more coordinate
08735:             *                          tuples, with linear interpolation between them. It is backwards compatible with the LineString of GML 2, GM_LineString of ISO 19107 is
08736:             *                          implemented by LineStringSegment.&lt;/documentation&gt;
08737:             *      &lt;/annotation&gt;
08738:             *      &lt;complexContent&gt;
08739:             *          &lt;extension base="gml:AbstractCurveType"&gt;
08740:             *              &lt;sequence&gt;
08741:             *                  &lt;choice&gt;
08742:             *                      &lt;annotation&gt;
08743:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a line string. 1. A sequence of "pos"
08744:             *                                                          (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part
08745:             *                                                          of this curve, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference
08746:             *                                                          another point defined outside of this curve (reuse of existing points). 2. The "posList" element allows for a compact way to
08747:             *                                                          specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong
08748:             *                                                          to this curve only. The number of direct positions in the list must be at least two.&lt;/documentation&gt;
08749:             *                      &lt;/annotation&gt;
08750:             *                      &lt;choice maxOccurs="unbounded" minOccurs="2"&gt;
08751:             *                          &lt;element ref="gml:pos"/&gt;
08752:             *                          &lt;element ref="gml:pointProperty"/&gt;
08753:             *                          &lt;element ref="gml:pointRep"&gt;
08754:             *                              &lt;annotation&gt;
08755:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility
08756:             *                                                                          with GML 3.0.0.&lt;/documentation&gt;
08757:             *                              &lt;/annotation&gt;
08758:             *                          &lt;/element&gt;
08759:             *                          &lt;element ref="gml:coord"&gt;
08760:             *                              &lt;annotation&gt;
08761:             *                                  &lt;documentation&gt;Deprecated with GML version 3.0. Use "pos" instead. The "coord" element is included for backwards
08762:             *                                                                          compatibility with GML 2.&lt;/documentation&gt;
08763:             *                              &lt;/annotation&gt;
08764:             *                          &lt;/element&gt;
08765:             *                      &lt;/choice&gt;
08766:             *                      &lt;element ref="gml:posList"/&gt;
08767:             *                      &lt;element ref="gml:coordinates"&gt;
08768:             *                          &lt;annotation&gt;
08769:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
08770:             *                          &lt;/annotation&gt;
08771:             *                      &lt;/element&gt;
08772:             *                  &lt;/choice&gt;
08773:             *              &lt;/sequence&gt;
08774:             *          &lt;/extension&gt;
08775:             *      &lt;/complexContent&gt;
08776:             *  &lt;/complexType&gt;
08777:             *
08778:             *    </code>
08779:             *   </pre>
08780:             * </p>
08781:             *
08782:             * @generated
08783:             */
08784:            public static final AttributeType LINESTRINGTYPE_TYPE = AttributeTypeFactory
08785:                    .newAttributeType("LineStringType", LineString.class);
08786:
08787:            /**
08788:             * <p>
08789:             *  <pre>
08790:             *   <code>
08791:             *  &lt;complexType name="MultiSurfaceDomainType"&gt;
08792:             *      &lt;complexContent&gt;
08793:             *          &lt;restriction base="gml:DomainSetType"&gt;
08794:             *              &lt;sequence minOccurs="0"&gt;
08795:             *                  &lt;element ref="gml:MultiSurface"/&gt;
08796:             *              &lt;/sequence&gt;
08797:             *              &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08798:             *          &lt;/restriction&gt;
08799:             *      &lt;/complexContent&gt;
08800:             *  &lt;/complexType&gt;
08801:             *
08802:             *    </code>
08803:             *   </pre>
08804:             * </p>
08805:             *
08806:             * @generated
08807:             */
08808:            public static final AttributeType MULTISURFACEDOMAINTYPE_TYPE = AttributeTypeFactory
08809:                    .newAttributeType("MultiSurfaceDomainType",
08810:                            java.lang.Object.class);
08811:
08812:            /**
08813:             * <p>
08814:             *  <pre>
08815:             *   <code>
08816:             *  &lt;complexType name="RectifiedGridDomainType"&gt;
08817:             *      &lt;complexContent&gt;
08818:             *          &lt;restriction base="gml:DomainSetType"&gt;
08819:             *              &lt;sequence minOccurs="0"&gt;
08820:             *                  &lt;element ref="gml:RectifiedGrid"/&gt;
08821:             *              &lt;/sequence&gt;
08822:             *              &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08823:             *          &lt;/restriction&gt;
08824:             *      &lt;/complexContent&gt;
08825:             *  &lt;/complexType&gt;
08826:             *
08827:             *    </code>
08828:             *   </pre>
08829:             * </p>
08830:             *
08831:             * @generated
08832:             */
08833:            public static final AttributeType RECTIFIEDGRIDDOMAINTYPE_TYPE = AttributeTypeFactory
08834:                    .newAttributeType("RectifiedGridDomainType",
08835:                            java.lang.Object.class);
08836:
08837:            /**
08838:             * <p>
08839:             *  <pre>
08840:             *   <code>
08841:             *  &lt;complexType name="ExtentType"&gt;
08842:             *      &lt;annotation&gt;
08843:             *          &lt;documentation&gt;Information about the spatial, vertical, and/or temporal extent of a reference system object. Constraints: At least one of the elements "description", "boundingBox", "boundingPolygon", "verticalExtent", and temporalExtent" must be included, but more that one can be included when appropriate. Furthermore, more than one "boundingBox", "boundingPolygon", "verticalExtent", and/or temporalExtent" element can be included, with more than one meaning the union of the individual domains.&lt;/documentation&gt;
08844:             *      &lt;/annotation&gt;
08845:             *      &lt;sequence&gt;
08846:             *          &lt;element minOccurs="0" ref="gml:description"&gt;
08847:             *              &lt;annotation&gt;
08848:             *                  &lt;documentation&gt;Description of spatial and/or temporal extent of this object.&lt;/documentation&gt;
08849:             *              &lt;/annotation&gt;
08850:             *          &lt;/element&gt;
08851:             *          &lt;choice&gt;
08852:             *              &lt;annotation&gt;
08853:             *                  &lt;documentation&gt;Geographic domain of this reference system object.&lt;/documentation&gt;
08854:             *              &lt;/annotation&gt;
08855:             *              &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:boundingBox"&gt;
08856:             *                  &lt;annotation&gt;
08857:             *                      &lt;documentation&gt;Unordered list of bounding boxes (or envelopes) whose union describes the spatial domain of this object.&lt;/documentation&gt;
08858:             *                  &lt;/annotation&gt;
08859:             *              &lt;/element&gt;
08860:             *              &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:boundingPolygon"&gt;
08861:             *                  &lt;annotation&gt;
08862:             *                      &lt;documentation&gt;Unordered list of bounding polygons whose union describes the spatial domain of this object.&lt;/documentation&gt;
08863:             *                  &lt;/annotation&gt;
08864:             *              &lt;/element&gt;
08865:             *          &lt;/choice&gt;
08866:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:verticalExtent"&gt;
08867:             *              &lt;annotation&gt;
08868:             *                  &lt;documentation&gt;Unordered list of vertical intervals whose union describes the spatial domain of this object.&lt;/documentation&gt;
08869:             *              &lt;/annotation&gt;
08870:             *          &lt;/element&gt;
08871:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:temporalExtent"&gt;
08872:             *              &lt;annotation&gt;
08873:             *                  &lt;documentation&gt;Unordered list of time periods whose union describes the spatial domain of this object.&lt;/documentation&gt;
08874:             *              &lt;/annotation&gt;
08875:             *          &lt;/element&gt;
08876:             *      &lt;/sequence&gt;
08877:             *  &lt;/complexType&gt;
08878:             *
08879:             *    </code>
08880:             *   </pre>
08881:             * </p>
08882:             *
08883:             * @generated
08884:             */
08885:            public static final AttributeType EXTENTTYPE_TYPE = AttributeTypeFactory
08886:                    .newAttributeType("ExtentType", java.lang.Object.class);
08887:
08888:            /**
08889:             * <p>
08890:             *  <pre>
08891:             *   <code>
08892:             *  &lt;simpleType name="SurfaceInterpolationType"&gt;
08893:             *      &lt;annotation&gt;
08894:             *          &lt;documentation&gt;SurfaceInterpolationType is a list of codes that may be used to identify the interpolation mechanisms specified by an
08895:             *  application schema.&lt;/documentation&gt;
08896:             *      &lt;/annotation&gt;
08897:             *      &lt;restriction base="string"&gt;
08898:             *          &lt;enumeration value="none"/&gt;
08899:             *          &lt;enumeration value="planar"/&gt;
08900:             *          &lt;enumeration value="spherical"/&gt;
08901:             *          &lt;enumeration value="elliptical"/&gt;
08902:             *          &lt;enumeration value="conic"/&gt;
08903:             *          &lt;enumeration value="tin"/&gt;
08904:             *          &lt;enumeration value="parametricCurve"/&gt;
08905:             *          &lt;enumeration value="polynomialSpline"/&gt;
08906:             *          &lt;enumeration value="rationalSpline"/&gt;
08907:             *          &lt;enumeration value="triangulatedSpline"/&gt;
08908:             *      &lt;/restriction&gt;
08909:             *  &lt;/simpleType&gt;
08910:             *
08911:             *    </code>
08912:             *   </pre>
08913:             * </p>
08914:             *
08915:             * @generated
08916:             */
08917:            public static final AttributeType SURFACEINTERPOLATIONTYPE_TYPE = AttributeTypeFactory
08918:                    .newAttributeType("SurfaceInterpolationType",
08919:                            java.lang.Object.class);
08920:
08921:            /**
08922:             * <p>
08923:             *  <pre>
08924:             *   <code>
08925:             *  &lt;complexType name="LinearRingType"&gt;
08926:             *      &lt;annotation&gt;
08927:             *          &lt;documentation&gt;A LinearRing is defined by four or more coordinate tuples, with linear interpolation between them; the first and last coordinates must be coincident.&lt;/documentation&gt;
08928:             *      &lt;/annotation&gt;
08929:             *      &lt;complexContent&gt;
08930:             *          &lt;extension base="gml:AbstractRingType"&gt;
08931:             *              &lt;sequence&gt;
08932:             *                  &lt;choice&gt;
08933:             *                      &lt;annotation&gt;
08934:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a linear ring.
08935:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this ring, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this ring (reuse of existing points).
08936:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this ring only. The number of direct positions in the list must be at least four.&lt;/documentation&gt;
08937:             *                      &lt;/annotation&gt;
08938:             *                      &lt;choice maxOccurs="unbounded" minOccurs="4"&gt;
08939:             *                          &lt;element ref="gml:pos"/&gt;
08940:             *                          &lt;element ref="gml:pointProperty"/&gt;
08941:             *                          &lt;element ref="gml:pointRep"&gt;
08942:             *                              &lt;annotation&gt;
08943:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
08944:             *                              &lt;/annotation&gt;
08945:             *                          &lt;/element&gt;
08946:             *                      &lt;/choice&gt;
08947:             *                      &lt;element ref="gml:posList"/&gt;
08948:             *                      &lt;element ref="gml:coordinates"&gt;
08949:             *                          &lt;annotation&gt;
08950:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
08951:             *                          &lt;/annotation&gt;
08952:             *                      &lt;/element&gt;
08953:             *                      &lt;element maxOccurs="unbounded" minOccurs="4" ref="gml:coord"&gt;
08954:             *                          &lt;annotation&gt;
08955:             *                              &lt;documentation&gt;Deprecated with GML version 3.0 and included for backwards compatibility with GML 2. Use "pos" elements instead.&lt;/documentation&gt;
08956:             *                          &lt;/annotation&gt;
08957:             *                      &lt;/element&gt;
08958:             *                  &lt;/choice&gt;
08959:             *              &lt;/sequence&gt;
08960:             *          &lt;/extension&gt;
08961:             *      &lt;/complexContent&gt;
08962:             *  &lt;/complexType&gt;
08963:             *
08964:             *    </code>
08965:             *   </pre>
08966:             * </p>
08967:             *
08968:             * @generated
08969:             */
08970:            public static final AttributeType LINEARRINGTYPE_TYPE = AttributeTypeFactory
08971:                    .newAttributeType("LinearRingType", java.lang.Object.class);
08972:
08973:            /**
08974:             * <p>
08975:             *  <pre>
08976:             *   <code>
08977:             *  &lt;complexType name="CoordinateSystemRefType"&gt;
08978:             *      &lt;annotation&gt;
08979:             *          &lt;documentation&gt;Association to a coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
08980:             *      &lt;/annotation&gt;
08981:             *      &lt;sequence minOccurs="0"&gt;
08982:             *          &lt;element ref="gml:_CoordinateSystem"/&gt;
08983:             *      &lt;/sequence&gt;
08984:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
08985:             *  &lt;/complexType&gt;
08986:             *
08987:             *    </code>
08988:             *   </pre>
08989:             * </p>
08990:             *
08991:             * @generated
08992:             */
08993:            public static final AttributeType COORDINATESYSTEMREFTYPE_TYPE = AttributeTypeFactory
08994:                    .newAttributeType("CoordinateSystemRefType",
08995:                            java.lang.Object.class);
08996:
08997:            /**
08998:             * <p>
08999:             *  <pre>
09000:             *   <code>
09001:             *  &lt;complexType name="EllipsoidType"&gt;
09002:             *      &lt;annotation&gt;
09003:             *          &lt;documentation&gt;An ellipsoid is a geometric figure that can be used to describe the approximate shape of the earth. In mathematical terms, it is a surface formed by the rotation of an ellipse about its minor axis.&lt;/documentation&gt;
09004:             *      &lt;/annotation&gt;
09005:             *      &lt;complexContent&gt;
09006:             *          &lt;extension base="gml:EllipsoidBaseType"&gt;
09007:             *              &lt;sequence&gt;
09008:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:ellipsoidID"&gt;
09009:             *                      &lt;annotation&gt;
09010:             *                          &lt;documentation&gt;Set of alternative identifications of this ellipsoid. The first ellipsoidID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
09011:             *                      &lt;/annotation&gt;
09012:             *                  &lt;/element&gt;
09013:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
09014:             *                      &lt;annotation&gt;
09015:             *                          &lt;documentation&gt;Comments on or information about this ellipsoid, including source information. &lt;/documentation&gt;
09016:             *                      &lt;/annotation&gt;
09017:             *                  &lt;/element&gt;
09018:             *                  &lt;element ref="gml:semiMajorAxis"/&gt;
09019:             *                  &lt;element ref="gml:secondDefiningParameter"/&gt;
09020:             *              &lt;/sequence&gt;
09021:             *          &lt;/extension&gt;
09022:             *      &lt;/complexContent&gt;
09023:             *  &lt;/complexType&gt;
09024:             *
09025:             *    </code>
09026:             *   </pre>
09027:             * </p>
09028:             *
09029:             * @generated
09030:             */
09031:            public static final AttributeType ELLIPSOIDTYPE_TYPE = AttributeTypeFactory
09032:                    .newAttributeType("EllipsoidType", java.lang.Object.class);
09033:
09034:            /**
09035:             * <p>
09036:             *  <pre>
09037:             *   <code>
09038:             *  &lt;complexType name="MultiSolidType"&gt;
09039:             *      &lt;annotation&gt;
09040:             *          &lt;documentation&gt;A MultiSolid is defined by one or more Solids, referenced through solidMember elements.&lt;/documentation&gt;
09041:             *      &lt;/annotation&gt;
09042:             *      &lt;complexContent&gt;
09043:             *          &lt;extension base="gml:AbstractGeometricAggregateType"&gt;
09044:             *              &lt;sequence&gt;
09045:             *                  &lt;annotation&gt;
09046:             *                      &lt;documentation&gt;The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection.
09047:             *  NOTE: Array properties cannot reference remote geometry elements.&lt;/documentation&gt;
09048:             *                  &lt;/annotation&gt;
09049:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:solidMember"/&gt;
09050:             *                  &lt;element minOccurs="0" ref="gml:solidMembers"/&gt;
09051:             *              &lt;/sequence&gt;
09052:             *          &lt;/extension&gt;
09053:             *      &lt;/complexContent&gt;
09054:             *  &lt;/complexType&gt;
09055:             *
09056:             *    </code>
09057:             *   </pre>
09058:             * </p>
09059:             *
09060:             * @generated
09061:             */
09062:            public static final AttributeType MULTISOLIDTYPE_TYPE = AttributeTypeFactory
09063:                    .newAttributeType("MultiSolidType", java.lang.Object.class);
09064:
09065:            /**
09066:             * <p>
09067:             *  <pre>
09068:             *   <code>
09069:             *  &lt;complexType abstract="true" name="AbstractTopoPrimitiveType"&gt;
09070:             *      &lt;complexContent&gt;
09071:             *          &lt;extension base="gml:AbstractTopologyType"&gt;
09072:             *              &lt;sequence&gt;
09073:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:isolated"/&gt;
09074:             *                  &lt;element minOccurs="0" ref="gml:container"/&gt;
09075:             *              &lt;/sequence&gt;
09076:             *          &lt;/extension&gt;
09077:             *      &lt;/complexContent&gt;
09078:             *  &lt;/complexType&gt;
09079:             *
09080:             *    </code>
09081:             *   </pre>
09082:             * </p>
09083:             *
09084:             * @generated
09085:             */
09086:            public static final AttributeType ABSTRACTTOPOPRIMITIVETYPE_TYPE = AttributeTypeFactory
09087:                    .newAttributeType("AbstractTopoPrimitiveType",
09088:                            java.lang.Object.class);
09089:
09090:            /**
09091:             * <p>
09092:             *  <pre>
09093:             *   <code>
09094:             *  &lt;complexType name="TransformationRefType"&gt;
09095:             *      &lt;annotation&gt;
09096:             *          &lt;documentation&gt;Association to a transformation, either referencing or containing the definition of that transformation. &lt;/documentation&gt;
09097:             *      &lt;/annotation&gt;
09098:             *      &lt;sequence minOccurs="0"&gt;
09099:             *          &lt;element ref="gml:Transformation"/&gt;
09100:             *      &lt;/sequence&gt;
09101:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
09102:             *  &lt;/complexType&gt;
09103:             *
09104:             *    </code>
09105:             *   </pre>
09106:             * </p>
09107:             *
09108:             * @generated
09109:             */
09110:            public static final AttributeType TRANSFORMATIONREFTYPE_TYPE = AttributeTypeFactory
09111:                    .newAttributeType("TransformationRefType",
09112:                            java.lang.Object.class);
09113:
09114:            /**
09115:             * <p>
09116:             *  <pre>
09117:             *   <code>
09118:             *  &lt;complexType name="TimeTopologyComplexType"&gt;
09119:             *      &lt;annotation&gt;
09120:             *          &lt;documentation xml:lang="en"&gt;A temporal topology complex.&lt;/documentation&gt;
09121:             *      &lt;/annotation&gt;
09122:             *      &lt;complexContent&gt;
09123:             *          &lt;extension base="gml:AbstractTimeComplexType"&gt;
09124:             *              &lt;sequence&gt;
09125:             *                  &lt;element maxOccurs="unbounded" name="primitive" type="gml:TimeTopologyPrimitivePropertyType"/&gt;
09126:             *              &lt;/sequence&gt;
09127:             *          &lt;/extension&gt;
09128:             *      &lt;/complexContent&gt;
09129:             *  &lt;/complexType&gt;
09130:             *
09131:             *    </code>
09132:             *   </pre>
09133:             * </p>
09134:             *
09135:             * @generated
09136:             */
09137:            public static final AttributeType TIMETOPOLOGYCOMPLEXTYPE_TYPE = AttributeTypeFactory
09138:                    .newAttributeType("TimeTopologyComplexType",
09139:                            java.lang.Object.class);
09140:
09141:            /**
09142:             * <p>
09143:             *  <pre>
09144:             *   <code>
09145:             *  &lt;complexType name="TransformationType"&gt;
09146:             *      &lt;annotation&gt;
09147:             *          &lt;documentation&gt;A concrete operation on coordinates that usually includes a change of datum. The parameters of a coordinate transformation are empirically derived from data containing the coordinates of a series of points in both coordinate reference systems. This computational process is usually "over-determined", allowing derivation of error (or accuracy) estimates for the transformation. Also, the stochastic nature of the parameters may result in multiple (different) versions of the same coordinate transformation.
09148:             *
09149:             *  This concrete complexType can be used for all operation methods, without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one Transformation instance. &lt;/documentation&gt;
09150:             *      &lt;/annotation&gt;
09151:             *      &lt;complexContent&gt;
09152:             *          &lt;extension base="gml:AbstractGeneralTransformationType"&gt;
09153:             *              &lt;sequence&gt;
09154:             *                  &lt;element ref="gml:usesMethod"/&gt;
09155:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:usesValue"&gt;
09156:             *                      &lt;annotation&gt;
09157:             *                          &lt;documentation&gt;Unordered set of composition associations to the set of parameter values used by this transformation operation. &lt;/documentation&gt;
09158:             *                      &lt;/annotation&gt;
09159:             *                  &lt;/element&gt;
09160:             *              &lt;/sequence&gt;
09161:             *          &lt;/extension&gt;
09162:             *      &lt;/complexContent&gt;
09163:             *  &lt;/complexType&gt;
09164:             *
09165:             *    </code>
09166:             *   </pre>
09167:             * </p>
09168:             *
09169:             * @generated
09170:             */
09171:            public static final AttributeType TRANSFORMATIONTYPE_TYPE = AttributeTypeFactory
09172:                    .newAttributeType("TransformationType",
09173:                            java.lang.Object.class);
09174:
09175:            /**
09176:             * <p>
09177:             *  <pre>
09178:             *   <code>
09179:             *  &lt;complexType name="TrackType"&gt;
09180:             *      &lt;annotation&gt;
09181:             *          &lt;documentation xml:lang="en"&gt;The track of a moving object is a sequence of specialized timeslices        that indicate the status of the object.&lt;/documentation&gt;
09182:             *      &lt;/annotation&gt;
09183:             *      &lt;complexContent&gt;
09184:             *          &lt;restriction base="gml:HistoryPropertyType"&gt;
09185:             *              &lt;sequence maxOccurs="unbounded"&gt;
09186:             *                  &lt;element ref="gml:MovingObjectStatus"/&gt;
09187:             *              &lt;/sequence&gt;
09188:             *          &lt;/restriction&gt;
09189:             *      &lt;/complexContent&gt;
09190:             *  &lt;/complexType&gt;
09191:             *
09192:             *    </code>
09193:             *   </pre>
09194:             * </p>
09195:             *
09196:             * @generated
09197:             */
09198:            public static final AttributeType TRACKTYPE_TYPE = AttributeTypeFactory
09199:                    .newAttributeType("TrackType", java.lang.Object.class);
09200:
09201:            /**
09202:             * <p>
09203:             *  <pre>
09204:             *   <code>
09205:             *  &lt;complexType name="BoundingShapeType"&gt;
09206:             *      &lt;annotation&gt;
09207:             *          &lt;documentation&gt;Bounding shape.&lt;/documentation&gt;
09208:             *      &lt;/annotation&gt;
09209:             *      &lt;sequence&gt;
09210:             *          &lt;choice&gt;
09211:             *              &lt;element ref="gml:Envelope"/&gt;
09212:             *              &lt;element ref="gml:Null"/&gt;
09213:             *          &lt;/choice&gt;
09214:             *      &lt;/sequence&gt;
09215:             *  &lt;/complexType&gt;
09216:             *
09217:             *    </code>
09218:             *   </pre>
09219:             * </p>
09220:             *
09221:             * @generated
09222:             */
09223:            public static final AttributeType BOUNDINGSHAPETYPE_TYPE = AttributeTypeFactory
09224:                    .newAttributeType("BoundingShapeType",
09225:                            java.lang.Object.class);
09226:
09227:            /**
09228:             * <p>
09229:             *  <pre>
09230:             *   <code>
09231:             *  &lt;complexType name="ImageCRSRefType"&gt;
09232:             *      &lt;annotation&gt;
09233:             *          &lt;documentation&gt;Association to an image coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
09234:             *      &lt;/annotation&gt;
09235:             *      &lt;sequence minOccurs="0"&gt;
09236:             *          &lt;element ref="gml:ImageCRS"/&gt;
09237:             *      &lt;/sequence&gt;
09238:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
09239:             *  &lt;/complexType&gt;
09240:             *
09241:             *    </code>
09242:             *   </pre>
09243:             * </p>
09244:             *
09245:             * @generated
09246:             */
09247:            public static final AttributeType IMAGECRSREFTYPE_TYPE = AttributeTypeFactory
09248:                    .newAttributeType("ImageCRSRefType", java.lang.Object.class);
09249:
09250:            /**
09251:             * <p>
09252:             *  <pre>
09253:             *   <code>
09254:             *  &lt;complexType name="ArcStringType"&gt;
09255:             *      &lt;annotation&gt;
09256:             *          &lt;documentation&gt;An ArcString is a curve segment that uses three-point circular arc interpolation.&lt;/documentation&gt;
09257:             *      &lt;/annotation&gt;
09258:             *      &lt;complexContent&gt;
09259:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
09260:             *              &lt;sequence&gt;
09261:             *                  &lt;choice&gt;
09262:             *                      &lt;annotation&gt;
09263:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
09264:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
09265:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be at least three.&lt;/documentation&gt;
09266:             *                      &lt;/annotation&gt;
09267:             *                      &lt;choice maxOccurs="unbounded" minOccurs="3"&gt;
09268:             *                          &lt;element ref="gml:pos"/&gt;
09269:             *                          &lt;element ref="gml:pointProperty"/&gt;
09270:             *                          &lt;element ref="gml:pointRep"&gt;
09271:             *                              &lt;annotation&gt;
09272:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
09273:             *                              &lt;/annotation&gt;
09274:             *                          &lt;/element&gt;
09275:             *                      &lt;/choice&gt;
09276:             *                      &lt;element ref="gml:posList"/&gt;
09277:             *                      &lt;element ref="gml:coordinates"&gt;
09278:             *                          &lt;annotation&gt;
09279:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
09280:             *                          &lt;/annotation&gt;
09281:             *                      &lt;/element&gt;
09282:             *                  &lt;/choice&gt;
09283:             *              &lt;/sequence&gt;
09284:             *              &lt;attribute fixed="circularArc3Points" name="interpolation" type="gml:CurveInterpolationType"&gt;
09285:             *                  &lt;annotation&gt;
09286:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism
09287:             *  uses the control points and control parameters to determine the position of this curve segment. For an ArcString the interpolation is fixed as "circularArc3Points".&lt;/documentation&gt;
09288:             *                  &lt;/annotation&gt;
09289:             *              &lt;/attribute&gt;
09290:             *              &lt;attribute name="numArc" type="integer" use="optional"&gt;
09291:             *                  &lt;annotation&gt;
09292:             *                      &lt;documentation&gt;The number of arcs in the arc string can be explicitly stated in this attribute. The number of control points in the arc string must be 2 * numArc + 1.&lt;/documentation&gt;
09293:             *                  &lt;/annotation&gt;
09294:             *              &lt;/attribute&gt;
09295:             *          &lt;/extension&gt;
09296:             *      &lt;/complexContent&gt;
09297:             *  &lt;/complexType&gt;
09298:             *
09299:             *    </code>
09300:             *   </pre>
09301:             * </p>
09302:             *
09303:             * @generated
09304:             */
09305:            public static final AttributeType ARCSTRINGTYPE_TYPE = AttributeTypeFactory
09306:                    .newAttributeType("ArcStringType", java.lang.Object.class);
09307:
09308:            /**
09309:             * <p>
09310:             *  <pre>
09311:             *   <code>
09312:             *  &lt;complexType name="MultiPointType"&gt;
09313:             *      &lt;annotation&gt;
09314:             *          &lt;documentation&gt;A MultiPoint is defined by one or more Points, referenced through pointMember elements.&lt;/documentation&gt;
09315:             *      &lt;/annotation&gt;
09316:             *      &lt;complexContent&gt;
09317:             *          &lt;extension base="gml:AbstractGeometricAggregateType"&gt;
09318:             *              &lt;sequence&gt;
09319:             *                  &lt;annotation&gt;
09320:             *                      &lt;documentation&gt;The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection.
09321:             *  NOTE: Array properties cannot reference remote geometry elements.&lt;/documentation&gt;
09322:             *                  &lt;/annotation&gt;
09323:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:pointMember"/&gt;
09324:             *                  &lt;element minOccurs="0" ref="gml:pointMembers"/&gt;
09325:             *              &lt;/sequence&gt;
09326:             *          &lt;/extension&gt;
09327:             *      &lt;/complexContent&gt;
09328:             *  &lt;/complexType&gt;
09329:             *
09330:             *    </code>
09331:             *   </pre>
09332:             * </p>
09333:             *
09334:             * @generated
09335:             */
09336:            public static final AttributeType MULTIPOINTTYPE_TYPE = AttributeTypeFactory
09337:                    .newAttributeType("MultiPointType", MultiPoint.class);
09338:
09339:            /**
09340:             * <p>
09341:             *  <pre>
09342:             *   <code>
09343:             *  &lt;complexType name="GeometricPrimitivePropertyType"&gt;
09344:             *      &lt;annotation&gt;
09345:             *          &lt;documentation&gt;A property that has a geometric primitive as its value domain can either be an appropriate geometry element
09346:             *                          encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry
09347:             *                          elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither
09348:             *                          both nor none.&lt;/documentation&gt;
09349:             *      &lt;/annotation&gt;
09350:             *      &lt;sequence minOccurs="0"&gt;
09351:             *          &lt;element ref="gml:_GeometricPrimitive"/&gt;
09352:             *      &lt;/sequence&gt;
09353:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
09354:             *          &lt;annotation&gt;
09355:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote
09356:             *                                  resources (including those elsewhere in the same document). A simple link element can be constructed by including a
09357:             *                                  specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide
09358:             *                                  Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between
09359:             *                                  resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer
09360:             *                                  functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
09361:             *          &lt;/annotation&gt;
09362:             *      &lt;/attributeGroup&gt;
09363:             *  &lt;/complexType&gt;
09364:             *
09365:             *    </code>
09366:             *   </pre>
09367:             * </p>
09368:             *
09369:             * @generated
09370:             */
09371:            public static final AttributeType GEOMETRICPRIMITIVEPROPERTYTYPE_TYPE = AttributeTypeFactory
09372:                    .newAttributeType("GeometricPrimitivePropertyType",
09373:                            java.lang.Object.class);
09374:
09375:            /**
09376:             * <p>
09377:             *  <pre>
09378:             *   <code>
09379:             *  &lt;complexType name="AbstractParametricCurveSurfaceType"&gt;
09380:             *      &lt;annotation&gt;
09381:             *          &lt;documentation/&gt;
09382:             *      &lt;/annotation&gt;
09383:             *      &lt;complexContent&gt;
09384:             *          &lt;extension base="gml:AbstractSurfacePatchType"/&gt;
09385:             *      &lt;/complexContent&gt;
09386:             *  &lt;/complexType&gt;
09387:             *
09388:             *    </code>
09389:             *   </pre>
09390:             * </p>
09391:             *
09392:             * @generated
09393:             */
09394:            public static final AttributeType ABSTRACTPARAMETRICCURVESURFACETYPE_TYPE = AttributeTypeFactory
09395:                    .newAttributeType("AbstractParametricCurveSurfaceType",
09396:                            java.lang.Object.class);
09397:
09398:            /**
09399:             * <p>
09400:             *  <pre>
09401:             *   <code>
09402:             *  &lt;simpleType name="CalDate"&gt;
09403:             *      &lt;annotation&gt;
09404:             *          &lt;documentation xml:lang="en"&gt;Calendar dates may be indicated with varying degrees of precision,
09405:             *        using year, year-month, date.
09406:             *        When used with non-Gregorian calendars based on years, months, days,
09407:             *        the same lexical representation should still be used, with leading zeros added if the
09408:             *        year value would otherwise have fewer than four digits.
09409:             *        time is used for a position that recurs daily (see clause 5.4.4.2 of ISO 19108:2002).&lt;/documentation&gt;
09410:             *      &lt;/annotation&gt;
09411:             *      &lt;union memberTypes="date gYearMonth gYear"/&gt;
09412:             *  &lt;/simpleType&gt;
09413:             *
09414:             *    </code>
09415:             *   </pre>
09416:             * </p>
09417:             *
09418:             * @generated
09419:             */
09420:            public static final AttributeType CALDATE_TYPE = AttributeTypeFactory
09421:                    .newAttributeType("CalDate", java.lang.Object.class);
09422:
09423:            /**
09424:             * <p>
09425:             *  <pre>
09426:             *   <code>
09427:             *  &lt;complexType name="TemporalDatumType"&gt;
09428:             *      &lt;annotation&gt;
09429:             *          &lt;documentation&gt;Defines the origin of a temporal coordinate reference system. This type extends the TemporalDatumRestrictionType to add the "origin" element with the dateTime type. &lt;/documentation&gt;
09430:             *      &lt;/annotation&gt;
09431:             *      &lt;complexContent&gt;
09432:             *          &lt;extension base="gml:TemporalDatumBaseType"&gt;
09433:             *              &lt;sequence&gt;
09434:             *                  &lt;element ref="gml:origin"/&gt;
09435:             *              &lt;/sequence&gt;
09436:             *          &lt;/extension&gt;
09437:             *      &lt;/complexContent&gt;
09438:             *  &lt;/complexType&gt;
09439:             *
09440:             *    </code>
09441:             *   </pre>
09442:             * </p>
09443:             *
09444:             * @generated
09445:             */
09446:            public static final AttributeType TEMPORALDATUMTYPE_TYPE = AttributeTypeFactory
09447:                    .newAttributeType("TemporalDatumType",
09448:                            java.lang.Object.class);
09449:
09450:            /**
09451:             * <p>
09452:             *  <pre>
09453:             *   <code>
09454:             *  &lt;simpleType name="booleanOrNullList"&gt;
09455:             *      &lt;annotation&gt;
09456:             *          &lt;documentation&gt;XML List based on the union type defined above.  An element declared with this type contains a space-separated list of boolean values {0,1,true,false} with null values interspersed as needed&lt;/documentation&gt;
09457:             *      &lt;/annotation&gt;
09458:             *      &lt;list itemType="gml:booleanOrNull"/&gt;
09459:             *  &lt;/simpleType&gt;
09460:             *
09461:             *    </code>
09462:             *   </pre>
09463:             * </p>
09464:             *
09465:             * @generated
09466:             */
09467:            public static final AttributeType BOOLEANORNULLLIST_TYPE = AttributeTypeFactory
09468:                    .newAttributeType("booleanOrNullList",
09469:                            java.lang.Object.class);
09470:
09471:            /**
09472:             * <p>
09473:             *  <pre>
09474:             *   <code>
09475:             *  &lt;complexType name="TimeCalendarEraPropertyType"&gt;
09476:             *      &lt;sequence minOccurs="0"&gt;
09477:             *          &lt;element ref="gml:TimeCalendarEra"/&gt;
09478:             *      &lt;/sequence&gt;
09479:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
09480:             *  &lt;/complexType&gt;
09481:             *
09482:             *    </code>
09483:             *   </pre>
09484:             * </p>
09485:             *
09486:             * @generated
09487:             */
09488:            public static final AttributeType TIMECALENDARERAPROPERTYTYPE_TYPE = AttributeTypeFactory
09489:                    .newAttributeType("TimeCalendarEraPropertyType",
09490:                            java.lang.Object.class);
09491:
09492:            /**
09493:             * <p>
09494:             *  <pre>
09495:             *   <code>
09496:             *  &lt;complexType name="ParameterValueGroupType"&gt;
09497:             *      &lt;annotation&gt;
09498:             *          &lt;documentation&gt;A group of related parameter values. The same group can be repeated more than once in a Conversion, Transformation, or higher level parameterValueGroup, if those instances contain different values of one or more parameterValues which suitably distinquish among those groups. This concrete complexType can be used for operation methods without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one instance. This complexType can be used, extended, or restricted for well-known operation methods, especially for methods with many instances. &lt;/documentation&gt;
09499:             *      &lt;/annotation&gt;
09500:             *      &lt;complexContent&gt;
09501:             *          &lt;extension base="gml:AbstractGeneralParameterValueType"&gt;
09502:             *              &lt;sequence&gt;
09503:             *                  &lt;element maxOccurs="unbounded" minOccurs="2" ref="gml:includesValue"&gt;
09504:             *                      &lt;annotation&gt;
09505:             *                          &lt;documentation&gt;Unordered set of composition associations to the parameter values and groups of values included in this group. &lt;/documentation&gt;
09506:             *                      &lt;/annotation&gt;
09507:             *                  &lt;/element&gt;
09508:             *                  &lt;element ref="gml:valuesOfGroup"/&gt;
09509:             *              &lt;/sequence&gt;
09510:             *          &lt;/extension&gt;
09511:             *      &lt;/complexContent&gt;
09512:             *  &lt;/complexType&gt;
09513:             *
09514:             *    </code>
09515:             *   </pre>
09516:             * </p>
09517:             *
09518:             * @generated
09519:             */
09520:            public static final AttributeType PARAMETERVALUEGROUPTYPE_TYPE = AttributeTypeFactory
09521:                    .newAttributeType("ParameterValueGroupType",
09522:                            java.lang.Object.class);
09523:
09524:            /**
09525:             * <p>
09526:             *  <pre>
09527:             *   <code>
09528:             *  &lt;simpleType name="CompassPointEnumeration"&gt;
09529:             *      &lt;restriction base="string"&gt;
09530:             *          &lt;enumeration value="N"/&gt;
09531:             *          &lt;enumeration value="NNE"/&gt;
09532:             *          &lt;enumeration value="NE"/&gt;
09533:             *          &lt;enumeration value="ENE"/&gt;
09534:             *          &lt;enumeration value="E"/&gt;
09535:             *          &lt;enumeration value="ESE"/&gt;
09536:             *          &lt;enumeration value="SE"/&gt;
09537:             *          &lt;enumeration value="SSE"/&gt;
09538:             *          &lt;enumeration value="S"/&gt;
09539:             *          &lt;enumeration value="SSW"/&gt;
09540:             *          &lt;enumeration value="SW"/&gt;
09541:             *          &lt;enumeration value="WSW"/&gt;
09542:             *          &lt;enumeration value="W"/&gt;
09543:             *          &lt;enumeration value="WNW"/&gt;
09544:             *          &lt;enumeration value="NW"/&gt;
09545:             *          &lt;enumeration value="NNW"/&gt;
09546:             *      &lt;/restriction&gt;
09547:             *  &lt;/simpleType&gt;
09548:             *
09549:             *    </code>
09550:             *   </pre>
09551:             * </p>
09552:             *
09553:             * @generated
09554:             */
09555:            public static final AttributeType COMPASSPOINTENUMERATION_TYPE = AttributeTypeFactory
09556:                    .newAttributeType("CompassPointEnumeration",
09557:                            java.lang.Object.class);
09558:
09559:            /**
09560:             * <p>
09561:             *  <pre>
09562:             *   <code>
09563:             *  &lt;complexType name="ParameterValueType"&gt;
09564:             *      &lt;annotation&gt;
09565:             *          &lt;documentation&gt;A parameter value, ordered sequence of values, or reference to a file of parameter values. This concrete complexType can be used for operation methods without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one instance. This complexType can be used, extended, or restricted for well-known operation methods, especially for methods with many instances. &lt;/documentation&gt;
09566:             *      &lt;/annotation&gt;
09567:             *      &lt;complexContent&gt;
09568:             *          &lt;extension base="gml:AbstractGeneralParameterValueType"&gt;
09569:             *              &lt;sequence&gt;
09570:             *                  &lt;choice&gt;
09571:             *                      &lt;element ref="gml:value"/&gt;
09572:             *                      &lt;element ref="gml:dmsAngleValue"/&gt;
09573:             *                      &lt;element ref="gml:stringValue"/&gt;
09574:             *                      &lt;element ref="gml:integerValue"/&gt;
09575:             *                      &lt;element ref="gml:booleanValue"/&gt;
09576:             *                      &lt;element ref="gml:valueList"/&gt;
09577:             *                      &lt;element ref="gml:integerValueList"/&gt;
09578:             *                      &lt;element ref="gml:valueFile"/&gt;
09579:             *                  &lt;/choice&gt;
09580:             *                  &lt;element ref="gml:valueOfParameter"/&gt;
09581:             *              &lt;/sequence&gt;
09582:             *          &lt;/extension&gt;
09583:             *      &lt;/complexContent&gt;
09584:             *  &lt;/complexType&gt;
09585:             *
09586:             *    </code>
09587:             *   </pre>
09588:             * </p>
09589:             *
09590:             * @generated
09591:             */
09592:            public static final AttributeType PARAMETERVALUETYPE_TYPE = AttributeTypeFactory
09593:                    .newAttributeType("ParameterValueType",
09594:                            java.lang.Object.class);
09595:
09596:            /**
09597:             * <p>
09598:             *  <pre>
09599:             *   <code>
09600:             *  &lt;complexType name="CircleByCenterPointType"&gt;
09601:             *      &lt;annotation&gt;
09602:             *          &lt;documentation&gt;A CircleByCenterPoint is an ArcByCenterPoint with identical start and end angle to form a full circle. Again, this represenation can be used only in 2D.&lt;/documentation&gt;
09603:             *      &lt;/annotation&gt;
09604:             *      &lt;complexContent&gt;
09605:             *          &lt;extension base="gml:ArcByCenterPointType"/&gt;
09606:             *      &lt;/complexContent&gt;
09607:             *  &lt;/complexType&gt;
09608:             *
09609:             *    </code>
09610:             *   </pre>
09611:             * </p>
09612:             *
09613:             * @generated
09614:             */
09615:            public static final AttributeType CIRCLEBYCENTERPOINTTYPE_TYPE = AttributeTypeFactory
09616:                    .newAttributeType("CircleByCenterPointType",
09617:                            java.lang.Object.class);
09618:
09619:            /**
09620:             * <p>
09621:             *  <pre>
09622:             *   <code>
09623:             *  &lt;complexType name="LabelStyleType"&gt;
09624:             *      &lt;annotation&gt;
09625:             *          &lt;documentation&gt;[complexType of] The style descriptor for labels of a feature, geometry or topology.&lt;/documentation&gt;
09626:             *      &lt;/annotation&gt;
09627:             *      &lt;complexContent&gt;
09628:             *          &lt;extension base="gml:BaseStyleDescriptorType"&gt;
09629:             *              &lt;sequence&gt;
09630:             *                  &lt;element name="style" type="string"/&gt;
09631:             *                  &lt;element name="label" type="gml:LabelType"/&gt;
09632:             *              &lt;/sequence&gt;
09633:             *          &lt;/extension&gt;
09634:             *      &lt;/complexContent&gt;
09635:             *  &lt;/complexType&gt;
09636:             *
09637:             *    </code>
09638:             *   </pre>
09639:             * </p>
09640:             *
09641:             * @generated
09642:             */
09643:            public static final AttributeType LABELSTYLETYPE_TYPE = AttributeTypeFactory
09644:                    .newAttributeType("LabelStyleType", java.lang.Object.class);
09645:
09646:            /**
09647:             * <p>
09648:             *  <pre>
09649:             *   <code>
09650:             *  &lt;complexType name="EdgeType"&gt;
09651:             *      &lt;annotation&gt;
09652:             *          &lt;documentation&gt;There is precisely one positively directed and one negatively directed node in the boundary of every edge. The negatively and positively directed nodes correspond to the start and end nodes respectively. The optional coboundary of an edge is a circular sequence of directed faces which are incident on this edge in document order. Faces which use a particular boundary edge in its positive orientation appear with positive orientation on the coboundary of the same edge. In the 2D case, the orientation of the face on the left of the edge is "+"; the orientation of the face on the right on its right is "-". An edge may optionally be realised by a 1-dimensional (curve) geometric primitive.&lt;/documentation&gt;
09653:             *      &lt;/annotation&gt;
09654:             *      &lt;complexContent&gt;
09655:             *          &lt;extension base="gml:AbstractTopoPrimitiveType"&gt;
09656:             *              &lt;sequence&gt;
09657:             *                  &lt;element maxOccurs="2" minOccurs="2" ref="gml:directedNode"/&gt;
09658:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:directedFace"/&gt;
09659:             *                  &lt;element minOccurs="0" ref="gml:curveProperty"/&gt;
09660:             *              &lt;/sequence&gt;
09661:             *          &lt;/extension&gt;
09662:             *      &lt;/complexContent&gt;
09663:             *  &lt;/complexType&gt;
09664:             *
09665:             *    </code>
09666:             *   </pre>
09667:             * </p>
09668:             *
09669:             * @generated
09670:             */
09671:            public static final AttributeType EDGETYPE_TYPE = AttributeTypeFactory
09672:                    .newAttributeType("EdgeType", java.lang.Object.class);
09673:
09674:            /**
09675:             * <p>
09676:             *  <pre>
09677:             *   <code>
09678:             *  &lt;complexType name="VectorType"&gt;
09679:             *      &lt;annotation&gt;
09680:             *          &lt;documentation&gt;Vector instances hold the compoents for a (usually spatial) vector within some coordinate reference system (CRS).
09681:             *                          Since Vectors will often be included in larger objects that have references to CRS, the "srsName" attribute may be missing.
09682:             *                          In this case, the CRS is implicitly assumed to take on the value of the containing object's CRS.
09683:             *
09684:             *                          Note that this content model is the same as DirectPositionType, but is defined separately to reflect the distinct semantics, and to avoid validation problems. SJDC 2004-12-02&lt;/documentation&gt;
09685:             *      &lt;/annotation&gt;
09686:             *      &lt;simpleContent&gt;
09687:             *          &lt;extension base="gml:doubleList"&gt;
09688:             *              &lt;attributeGroup ref="gml:SRSReferenceGroup"/&gt;
09689:             *          &lt;/extension&gt;
09690:             *      &lt;/simpleContent&gt;
09691:             *  &lt;/complexType&gt;
09692:             *
09693:             *    </code>
09694:             *   </pre>
09695:             * </p>
09696:             *
09697:             * @generated
09698:             */
09699:            public static final AttributeType VECTORTYPE_TYPE = AttributeTypeFactory
09700:                    .newAttributeType("VectorType", java.lang.Object.class);
09701:
09702:            /**
09703:             * <p>
09704:             *  <pre>
09705:             *   <code>
09706:             *  &lt;complexType name="PriorityLocationPropertyType"&gt;
09707:             *      &lt;annotation&gt;
09708:             *          &lt;documentation&gt;G-XML component&lt;/documentation&gt;
09709:             *          &lt;documentation&gt;Deprecated in GML 3.1.0&lt;/documentation&gt;
09710:             *      &lt;/annotation&gt;
09711:             *      &lt;complexContent&gt;
09712:             *          &lt;extension base="gml:LocationPropertyType"&gt;
09713:             *              &lt;attribute name="priority" type="string" use="optional"/&gt;
09714:             *          &lt;/extension&gt;
09715:             *      &lt;/complexContent&gt;
09716:             *  &lt;/complexType&gt;
09717:             *
09718:             *    </code>
09719:             *   </pre>
09720:             * </p>
09721:             *
09722:             * @generated
09723:             */
09724:            public static final AttributeType PRIORITYLOCATIONPROPERTYTYPE_TYPE = AttributeTypeFactory
09725:                    .newAttributeType("PriorityLocationPropertyType",
09726:                            java.lang.Object.class);
09727:
09728:            /**
09729:             * <p>
09730:             *  <pre>
09731:             *   <code>
09732:             *  &lt;complexType name="CircleType"&gt;
09733:             *      &lt;annotation&gt;
09734:             *          &lt;documentation&gt;A Circle is an arc whose ends coincide to form a simple closed loop. The "start" and "end" bearing are equal and shall be the bearing for the first controlPoint listed. The three control points must be distinct non-co-linear points for the Circle to be unambiguously defined. The arc is simply extended past the third control point until the first control point is encountered.&lt;/documentation&gt;
09735:             *      &lt;/annotation&gt;
09736:             *      &lt;complexContent&gt;
09737:             *          &lt;extension base="gml:ArcType"/&gt;
09738:             *      &lt;/complexContent&gt;
09739:             *  &lt;/complexType&gt;
09740:             *
09741:             *    </code>
09742:             *   </pre>
09743:             * </p>
09744:             *
09745:             * @generated
09746:             */
09747:            public static final AttributeType CIRCLETYPE_TYPE = AttributeTypeFactory
09748:                    .newAttributeType("CircleType", java.lang.Object.class);
09749:
09750:            /**
09751:             * <p>
09752:             *  <pre>
09753:             *   <code>
09754:             *  &lt;complexType abstract="true" name="AbstractTimeComplexType"&gt;
09755:             *      &lt;annotation&gt;
09756:             *          &lt;documentation xml:lang="en"&gt;The abstract supertype for temporal complexes.&lt;/documentation&gt;
09757:             *      &lt;/annotation&gt;
09758:             *      &lt;complexContent&gt;
09759:             *          &lt;extension base="gml:AbstractTimeObjectType"/&gt;
09760:             *      &lt;/complexContent&gt;
09761:             *  &lt;/complexType&gt;
09762:             *
09763:             *    </code>
09764:             *   </pre>
09765:             * </p>
09766:             *
09767:             * @generated
09768:             */
09769:            public static final AttributeType ABSTRACTTIMECOMPLEXTYPE_TYPE = AttributeTypeFactory
09770:                    .newAttributeType("AbstractTimeComplexType",
09771:                            java.lang.Object.class);
09772:
09773:            /**
09774:             * <p>
09775:             *  <pre>
09776:             *   <code>
09777:             *  &lt;complexType name="BSplineType"&gt;
09778:             *      &lt;annotation&gt;
09779:             *          &lt;documentation&gt;A B-Spline is a piecewise parametric polynomial or rational curve described in terms of control points and basis functions. Knots are breakpoints on the curve that connect its pieces. They are given as a non-decreasing sequence of real numbers. If the weights in the knots are equal then it is a polynomial spline. The degree is the algebraic degree of the basis functions.&lt;/documentation&gt;
09780:             *      &lt;/annotation&gt;
09781:             *      &lt;complexContent&gt;
09782:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
09783:             *              &lt;sequence&gt;
09784:             *                  &lt;choice&gt;
09785:             *                      &lt;annotation&gt;
09786:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
09787:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
09788:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only.&lt;/documentation&gt;
09789:             *                      &lt;/annotation&gt;
09790:             *                      &lt;choice maxOccurs="unbounded" minOccurs="0"&gt;
09791:             *                          &lt;element ref="gml:pos"/&gt;
09792:             *                          &lt;element ref="gml:pointProperty"/&gt;
09793:             *                          &lt;element ref="gml:pointRep"&gt;
09794:             *                              &lt;annotation&gt;
09795:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
09796:             *                              &lt;/annotation&gt;
09797:             *                          &lt;/element&gt;
09798:             *                      &lt;/choice&gt;
09799:             *                      &lt;element ref="gml:posList"/&gt;
09800:             *                      &lt;element ref="gml:coordinates"&gt;
09801:             *                          &lt;annotation&gt;
09802:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
09803:             *                          &lt;/annotation&gt;
09804:             *                      &lt;/element&gt;
09805:             *                  &lt;/choice&gt;
09806:             *                  &lt;element name="degree" type="nonNegativeInteger"&gt;
09807:             *                      &lt;annotation&gt;
09808:             *                          &lt;documentation&gt;The attribute "degree" shall be the degree of the polynomial used for interpolation in this spline.&lt;/documentation&gt;
09809:             *                      &lt;/annotation&gt;
09810:             *                  &lt;/element&gt;
09811:             *                  &lt;element maxOccurs="unbounded" minOccurs="2" name="knot" type="gml:KnotPropertyType"&gt;
09812:             *                      &lt;annotation&gt;
09813:             *                          &lt;documentation&gt;The property "knot" shall be the sequence of distinct knots used to define the spline basis functions.&lt;/documentation&gt;
09814:             *                      &lt;/annotation&gt;
09815:             *                  &lt;/element&gt;
09816:             *              &lt;/sequence&gt;
09817:             *              &lt;attribute default="polynomialSpline" name="interpolation" type="gml:CurveInterpolationType"&gt;
09818:             *                  &lt;annotation&gt;
09819:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism
09820:             *  uses the control points and control parameters to determine the position of this curve segment. For a BSpline the interpolation can be either "polynomialSpline" or "rationalSpline", default is "polynomialSpline".&lt;/documentation&gt;
09821:             *                  &lt;/annotation&gt;
09822:             *              &lt;/attribute&gt;
09823:             *              &lt;attribute name="isPolynomial" type="boolean" use="optional"&gt;
09824:             *                  &lt;annotation&gt;
09825:             *                      &lt;documentation&gt;The attribute isPolynomial is set to true if this is a polynomial spline.&lt;/documentation&gt;
09826:             *                  &lt;/annotation&gt;
09827:             *              &lt;/attribute&gt;
09828:             *              &lt;attribute name="knotType" type="gml:KnotTypesType" use="optional"&gt;
09829:             *                  &lt;annotation&gt;
09830:             *                      &lt;documentation&gt;The attribute "knotType" gives the type of knot distribution used in defining this spline. This is for information only
09831:             *  and is set according to the different construction-functions.&lt;/documentation&gt;
09832:             *                  &lt;/annotation&gt;
09833:             *              &lt;/attribute&gt;
09834:             *          &lt;/extension&gt;
09835:             *      &lt;/complexContent&gt;
09836:             *  &lt;/complexType&gt;
09837:             *
09838:             *    </code>
09839:             *   </pre>
09840:             * </p>
09841:             *
09842:             * @generated
09843:             */
09844:            public static final AttributeType BSPLINETYPE_TYPE = AttributeTypeFactory
09845:                    .newAttributeType("BSplineType", java.lang.Object.class);
09846:
09847:            /**
09848:             * <p>
09849:             *  <pre>
09850:             *   <code>
09851:             *  &lt;complexType name="KnotType"&gt;
09852:             *      &lt;annotation&gt;
09853:             *          &lt;documentation&gt;A knot is a breakpoint on a piecewise spline curve.&lt;/documentation&gt;
09854:             *      &lt;/annotation&gt;
09855:             *      &lt;sequence&gt;
09856:             *          &lt;element name="value" type="double"&gt;
09857:             *              &lt;annotation&gt;
09858:             *                  &lt;documentation&gt;The property "value" is the value of the parameter at the knot of the spline. The sequence of knots shall be a non-decreasing sequence. That is, each knot's value in the sequence shall be equal to or greater than the previous knot's value. The use of equal consecutive knots is normally handled using the multiplicity.&lt;/documentation&gt;
09859:             *              &lt;/annotation&gt;
09860:             *          &lt;/element&gt;
09861:             *          &lt;element name="multiplicity" type="nonNegativeInteger"&gt;
09862:             *              &lt;annotation&gt;
09863:             *                  &lt;documentation&gt;The property "multiplicity" is the multiplicity of this knot used in the definition of the spline (with the same weight).&lt;/documentation&gt;
09864:             *              &lt;/annotation&gt;
09865:             *          &lt;/element&gt;
09866:             *          &lt;element name="weight" type="double"&gt;
09867:             *              &lt;annotation&gt;
09868:             *                  &lt;documentation&gt;The property "weight" is the value of the averaging weight used for this knot of the spline.&lt;/documentation&gt;
09869:             *              &lt;/annotation&gt;
09870:             *          &lt;/element&gt;
09871:             *      &lt;/sequence&gt;
09872:             *  &lt;/complexType&gt;
09873:             *
09874:             *    </code>
09875:             *   </pre>
09876:             * </p>
09877:             *
09878:             * @generated
09879:             */
09880:            public static final AttributeType KNOTTYPE_TYPE = AttributeTypeFactory
09881:                    .newAttributeType("KnotType", java.lang.Object.class);
09882:
09883:            /**
09884:             * <p>
09885:             *  <pre>
09886:             *   <code>
09887:             *  &lt;complexType name="DefaultStylePropertyType"&gt;
09888:             *      &lt;annotation&gt;
09889:             *          &lt;documentation&gt;[complexType of] Top-level property. Used in application schemas to "attach" the styling information to GML data. The link between the data and the style should be established through this property only.&lt;/documentation&gt;
09890:             *      &lt;/annotation&gt;
09891:             *      &lt;sequence&gt;
09892:             *          &lt;element minOccurs="0" ref="gml:_Style"/&gt;
09893:             *      &lt;/sequence&gt;
09894:             *      &lt;attribute name="about" type="anyURI" use="optional"/&gt;
09895:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
09896:             *  &lt;/complexType&gt;
09897:             *
09898:             *    </code>
09899:             *   </pre>
09900:             * </p>
09901:             *
09902:             * @generated
09903:             */
09904:            public static final AttributeType DEFAULTSTYLEPROPERTYTYPE_TYPE = AttributeTypeFactory
09905:                    .newAttributeType("DefaultStylePropertyType",
09906:                            java.lang.Object.class);
09907:
09908:            /**
09909:             * <p>
09910:             *  <pre>
09911:             *   <code>
09912:             *  &lt;complexType name="CoordinateOperationRefType"&gt;
09913:             *      &lt;annotation&gt;
09914:             *          &lt;documentation&gt;Association to a coordinate operation, either referencing or containing the definition of that coordinate operation. &lt;/documentation&gt;
09915:             *      &lt;/annotation&gt;
09916:             *      &lt;sequence minOccurs="0"&gt;
09917:             *          &lt;element ref="gml:_CoordinateOperation"/&gt;
09918:             *      &lt;/sequence&gt;
09919:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
09920:             *  &lt;/complexType&gt;
09921:             *
09922:             *    </code>
09923:             *   </pre>
09924:             * </p>
09925:             *
09926:             * @generated
09927:             */
09928:            public static final AttributeType COORDINATEOPERATIONREFTYPE_TYPE = AttributeTypeFactory
09929:                    .newAttributeType("CoordinateOperationRefType",
09930:                            java.lang.Object.class);
09931:
09932:            /**
09933:             * <p>
09934:             *  <pre>
09935:             *   <code>
09936:             *  &lt;complexType name="BezierType"&gt;
09937:             *      &lt;annotation&gt;
09938:             *          &lt;documentation&gt;Bezier curves are polynomial splines that use Bezier or Bernstein polynomials for interpolation purposes. It is a special case of the B-Spline curve with two knots.&lt;/documentation&gt;
09939:             *      &lt;/annotation&gt;
09940:             *      &lt;complexContent&gt;
09941:             *          &lt;restriction base="gml:BSplineType"&gt;
09942:             *              &lt;sequence&gt;
09943:             *                  &lt;choice&gt;
09944:             *                      &lt;annotation&gt;
09945:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
09946:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
09947:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only.&lt;/documentation&gt;
09948:             *                      &lt;/annotation&gt;
09949:             *                      &lt;choice maxOccurs="unbounded" minOccurs="0"&gt;
09950:             *                          &lt;element ref="gml:pos"/&gt;
09951:             *                          &lt;element ref="gml:pointProperty"/&gt;
09952:             *                          &lt;element ref="gml:pointRep"&gt;
09953:             *                              &lt;annotation&gt;
09954:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
09955:             *                              &lt;/annotation&gt;
09956:             *                          &lt;/element&gt;
09957:             *                      &lt;/choice&gt;
09958:             *                      &lt;element ref="gml:posList"/&gt;
09959:             *                      &lt;element ref="gml:coordinates"&gt;
09960:             *                          &lt;annotation&gt;
09961:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
09962:             *                          &lt;/annotation&gt;
09963:             *                      &lt;/element&gt;
09964:             *                  &lt;/choice&gt;
09965:             *                  &lt;element name="degree" type="nonNegativeInteger"&gt;
09966:             *                      &lt;annotation&gt;
09967:             *                          &lt;documentation&gt;The attribute "degree" shall be the degree of the polynomial used for interpolation in this spline.&lt;/documentation&gt;
09968:             *                      &lt;/annotation&gt;
09969:             *                  &lt;/element&gt;
09970:             *                  &lt;element maxOccurs="2" minOccurs="2" name="knot" type="gml:KnotPropertyType"&gt;
09971:             *                      &lt;annotation&gt;
09972:             *                          &lt;documentation&gt;The property "knot" shall be the sequence of distinct knots used to define the spline basis functions.&lt;/documentation&gt;
09973:             *                      &lt;/annotation&gt;
09974:             *                  &lt;/element&gt;
09975:             *              &lt;/sequence&gt;
09976:             *              &lt;attribute fixed="polynomialSpline" name="interpolation" type="gml:CurveInterpolationType"&gt;
09977:             *                  &lt;annotation&gt;
09978:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism
09979:             *  uses the control points and control parameters to determine the position of this curve segment. For a Bezier the interpolation is fixed as "polynomialSpline".&lt;/documentation&gt;
09980:             *                  &lt;/annotation&gt;
09981:             *              &lt;/attribute&gt;
09982:             *              &lt;attribute fixed="true" name="isPolynomial" type="boolean"&gt;
09983:             *                  &lt;annotation&gt;
09984:             *                      &lt;documentation&gt;The attribute isPolynomial is set to true as this is a polynomial spline.&lt;/documentation&gt;
09985:             *                  &lt;/annotation&gt;
09986:             *              &lt;/attribute&gt;
09987:             *              &lt;attribute name="knotType" type="gml:KnotTypesType" use="prohibited"&gt;
09988:             *                  &lt;annotation&gt;
09989:             *                      &lt;documentation&gt;The property "knotType" is not relevant for Bezier curve segments.&lt;/documentation&gt;
09990:             *                  &lt;/annotation&gt;
09991:             *              &lt;/attribute&gt;
09992:             *          &lt;/restriction&gt;
09993:             *      &lt;/complexContent&gt;
09994:             *  &lt;/complexType&gt;
09995:             *
09996:             *    </code>
09997:             *   </pre>
09998:             * </p>
09999:             *
10000:             * @generated
10001:             */
10002:            public static final AttributeType BEZIERTYPE_TYPE = AttributeTypeFactory
10003:                    .newAttributeType("BezierType", java.lang.Object.class);
10004:
10005:            /**
10006:             * <p>
10007:             *  <pre>
10008:             *   <code>
10009:             *  &lt;complexType name="DirectionPropertyType"&gt;
10010:             *      &lt;annotation&gt;
10011:             *          &lt;documentation/&gt;
10012:             *      &lt;/annotation&gt;
10013:             *      &lt;choice&gt;
10014:             *          &lt;element ref="gml:DirectionVector"/&gt;
10015:             *          &lt;element ref="gml:CompassPoint"/&gt;
10016:             *          &lt;element name="DirectionKeyword" type="gml:CodeType"/&gt;
10017:             *          &lt;element name="DirectionString" type="gml:StringOrRefType"/&gt;
10018:             *      &lt;/choice&gt;
10019:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
10020:             *  &lt;/complexType&gt;
10021:             *
10022:             *    </code>
10023:             *   </pre>
10024:             * </p>
10025:             *
10026:             * @generated
10027:             */
10028:            public static final AttributeType DIRECTIONPROPERTYTYPE_TYPE = AttributeTypeFactory
10029:                    .newAttributeType("DirectionPropertyType",
10030:                            java.lang.Object.class);
10031:
10032:            /**
10033:             * <p>
10034:             *  <pre>
10035:             *   <code>
10036:             *  &lt;complexType name="LineStringSegmentType"&gt;
10037:             *      &lt;annotation&gt;
10038:             *          &lt;documentation&gt;A LineStringSegment is a curve segment that is defined by two or more coordinate tuples, with linear interpolation between them.
10039:             *                                  Note: LineStringSegment implements GM_LineString of ISO 19107.&lt;/documentation&gt;
10040:             *      &lt;/annotation&gt;
10041:             *      &lt;complexContent&gt;
10042:             *          &lt;extension base="gml:AbstractCurveSegmentType"&gt;
10043:             *              &lt;sequence&gt;
10044:             *                  &lt;choice&gt;
10045:             *                      &lt;annotation&gt;
10046:             *                          &lt;documentation&gt;GML supports two different ways to specify the control points of a curve segment.
10047:             *  1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points).
10048:             *  2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be at least two.&lt;/documentation&gt;
10049:             *                      &lt;/annotation&gt;
10050:             *                      &lt;choice maxOccurs="unbounded" minOccurs="2"&gt;
10051:             *                          &lt;element ref="gml:pos"/&gt;
10052:             *                          &lt;element ref="gml:pointProperty"/&gt;
10053:             *                          &lt;element ref="gml:pointRep"&gt;
10054:             *                              &lt;annotation&gt;
10055:             *                                  &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.&lt;/documentation&gt;
10056:             *                              &lt;/annotation&gt;
10057:             *                          &lt;/element&gt;
10058:             *                      &lt;/choice&gt;
10059:             *                      &lt;element ref="gml:posList"/&gt;
10060:             *                      &lt;element ref="gml:coordinates"&gt;
10061:             *                          &lt;annotation&gt;
10062:             *                              &lt;documentation&gt;Deprecated with GML version 3.1.0. Use "posList" instead.&lt;/documentation&gt;
10063:             *                          &lt;/annotation&gt;
10064:             *                      &lt;/element&gt;
10065:             *                  &lt;/choice&gt;
10066:             *              &lt;/sequence&gt;
10067:             *              &lt;attribute fixed="linear" name="interpolation" type="gml:CurveInterpolationType"&gt;
10068:             *                  &lt;annotation&gt;
10069:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism
10070:             *  uses the control points and control parameters to determine the position of this curve segment. For a LineStringSegment the interpolation is fixed as "linear".&lt;/documentation&gt;
10071:             *                  &lt;/annotation&gt;
10072:             *              &lt;/attribute&gt;
10073:             *          &lt;/extension&gt;
10074:             *      &lt;/complexContent&gt;
10075:             *  &lt;/complexType&gt;
10076:             *
10077:             *    </code>
10078:             *   </pre>
10079:             * </p>
10080:             *
10081:             * @generated
10082:             */
10083:            public static final AttributeType LINESTRINGSEGMENTTYPE_TYPE = AttributeTypeFactory
10084:                    .newAttributeType("LineStringSegmentType", LineString.class);
10085:
10086:            /**
10087:             * <p>
10088:             *  <pre>
10089:             *   <code>
10090:             *  &lt;complexType name="TemporalCSRefType"&gt;
10091:             *      &lt;annotation&gt;
10092:             *          &lt;documentation&gt;Association to a temporal coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
10093:             *      &lt;/annotation&gt;
10094:             *      &lt;sequence minOccurs="0"&gt;
10095:             *          &lt;element ref="gml:TemporalCS"/&gt;
10096:             *      &lt;/sequence&gt;
10097:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
10098:             *  &lt;/complexType&gt;
10099:             *
10100:             *    </code>
10101:             *   </pre>
10102:             * </p>
10103:             *
10104:             * @generated
10105:             */
10106:            public static final AttributeType TEMPORALCSREFTYPE_TYPE = AttributeTypeFactory
10107:                    .newAttributeType("TemporalCSRefType",
10108:                            java.lang.Object.class);
10109:
10110:            /**
10111:             * <p>
10112:             *  <pre>
10113:             *   <code>
10114:             *  &lt;complexType name="CartesianCSType"&gt;
10115:             *      &lt;annotation&gt;
10116:             *          &lt;documentation&gt;A 1-, 2-, or 3-dimensional coordinate system. Gives the position of points relative to orthogonal straight axes in the 2- and 3-dimensional cases. In the 1-dimensional case, it contains a single straight coordinate axis. In the multi-dimensional case, all axes shall have the same length unit of measure. A CartesianCS shall have one, two, or three usesAxis associations. &lt;/documentation&gt;
10117:             *      &lt;/annotation&gt;
10118:             *      &lt;complexContent&gt;
10119:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
10120:             *      &lt;/complexContent&gt;
10121:             *  &lt;/complexType&gt;
10122:             *
10123:             *    </code>
10124:             *   </pre>
10125:             * </p>
10126:             *
10127:             * @generated
10128:             */
10129:            public static final AttributeType CARTESIANCSTYPE_TYPE = AttributeTypeFactory
10130:                    .newAttributeType("CartesianCSType", java.lang.Object.class);
10131:
10132:            /**
10133:             * <p>
10134:             *  <pre>
10135:             *   <code>
10136:             *  &lt;complexType name="NodeType"&gt;
10137:             *      &lt;annotation&gt;
10138:             *          &lt;documentation&gt;Its optional co-boundary is a set of connected directedEdges.  The orientation of one of these dirEdges is "+" if the Node is the "to" node of the Edge, and "-" if it is the "from" node.&lt;/documentation&gt;
10139:             *      &lt;/annotation&gt;
10140:             *      &lt;complexContent&gt;
10141:             *          &lt;extension base="gml:AbstractTopoPrimitiveType"&gt;
10142:             *              &lt;sequence&gt;
10143:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:directedEdge"/&gt;
10144:             *                  &lt;element minOccurs="0" ref="gml:pointProperty"/&gt;
10145:             *                  &lt;!-- &lt;element name="geometry" type="gml:PointPropertyType" minOccurs="0"/&gt; --&gt;
10146:             *              &lt;/sequence&gt;
10147:             *          &lt;/extension&gt;
10148:             *      &lt;/complexContent&gt;
10149:             *  &lt;/complexType&gt;
10150:             *
10151:             *    </code>
10152:             *   </pre>
10153:             * </p>
10154:             *
10155:             * @generated
10156:             */
10157:            public static final AttributeType NODETYPE_TYPE = AttributeTypeFactory
10158:                    .newAttributeType("NodeType", java.lang.Object.class);
10159:
10160:            /**
10161:             * <p>
10162:             *  <pre>
10163:             *   <code>
10164:             *  &lt;simpleType name="doubleList"&gt;
10165:             *      &lt;annotation&gt;
10166:             *          &lt;documentation&gt;XML List based on XML Schema double type.  An element of this type contains a space-separated list of double values&lt;/documentation&gt;
10167:             *      &lt;/annotation&gt;
10168:             *      &lt;list itemType="double"/&gt;
10169:             *  &lt;/simpleType&gt;
10170:             *
10171:             *    </code>
10172:             *   </pre>
10173:             * </p>
10174:             *
10175:             * @generated
10176:             */
10177:            public static final AttributeType DOUBLELIST_TYPE = AttributeTypeFactory
10178:                    .newAttributeType("doubleList", java.lang.Object.class);
10179:
10180:            /**
10181:             * <p>
10182:             *  <pre>
10183:             *   <code>
10184:             *  &lt;simpleType name="booleanList"&gt;
10185:             *      &lt;annotation&gt;
10186:             *          &lt;documentation&gt;XML List based on XML Schema boolean type.  An element of this type contains a space-separated list of boolean values {0,1,true,false}&lt;/documentation&gt;
10187:             *      &lt;/annotation&gt;
10188:             *      &lt;list itemType="boolean"/&gt;
10189:             *  &lt;/simpleType&gt;
10190:             *
10191:             *    </code>
10192:             *   </pre>
10193:             * </p>
10194:             *
10195:             * @generated
10196:             */
10197:            public static final AttributeType BOOLEANLIST_TYPE = AttributeTypeFactory
10198:                    .newAttributeType("booleanList", java.lang.Object.class);
10199:
10200:            /**
10201:             * <p>
10202:             *  <pre>
10203:             *   <code>
10204:             *  &lt;complexType name="ArrayType"&gt;
10205:             *      &lt;annotation&gt;
10206:             *          &lt;documentation&gt;A non-abstract generic collection type that can be used as a document element for a homogeneous collection of any GML types - Geometries, Topologies, Features ...&lt;/documentation&gt;
10207:             *      &lt;/annotation&gt;
10208:             *      &lt;complexContent&gt;
10209:             *          &lt;extension base="gml:AbstractGMLType"&gt;
10210:             *              &lt;sequence&gt;
10211:             *                  &lt;element minOccurs="0" ref="gml:members"/&gt;
10212:             *              &lt;/sequence&gt;
10213:             *          &lt;/extension&gt;
10214:             *      &lt;/complexContent&gt;
10215:             *  &lt;/complexType&gt;
10216:             *
10217:             *    </code>
10218:             *   </pre>
10219:             * </p>
10220:             *
10221:             * @generated
10222:             */
10223:            public static final AttributeType ARRAYTYPE_TYPE = AttributeTypeFactory
10224:                    .newAttributeType("ArrayType", java.lang.Object.class);
10225:
10226:            /**
10227:             * <p>
10228:             *  <pre>
10229:             *   <code>
10230:             *  &lt;complexType name="SolidType"&gt;
10231:             *      &lt;annotation&gt;
10232:             *          &lt;documentation&gt;A solid is the basis for 3-dimensional geometry. The extent of a solid is defined by the boundary surfaces (shells). A shell is represented by a composite surface, where every  shell is used to represent a single connected component of the boundary of a solid. It consists of a composite surface (a list of orientable surfaces) connected in a topological cycle (an object whose boundary is empty). Unlike a Ring, a Shell's elements have no natural sort order. Like Rings, Shells are simple.&lt;/documentation&gt;
10233:             *      &lt;/annotation&gt;
10234:             *      &lt;complexContent&gt;
10235:             *          &lt;extension base="gml:AbstractSolidType"&gt;
10236:             *              &lt;sequence&gt;
10237:             *                  &lt;element minOccurs="0" name="exterior" type="gml:SurfacePropertyType"&gt;
10238:             *                      &lt;annotation&gt;
10239:             *                          &lt;appinfo&gt;
10240:             *                              &lt;sch:pattern name="Check either href or content not both"&gt;
10241:             *                                  &lt;sch:rule context="gml:exterior"&gt;
10242:             *                                      &lt;sch:extends rule="hrefOrContent"/&gt;
10243:             *                                  &lt;/sch:rule&gt;
10244:             *                              &lt;/sch:pattern&gt;
10245:             *                          &lt;/appinfo&gt;
10246:             *                          &lt;documentation&gt;Boundaries of solids are similar to surface boundaries. In normal 3-dimensional Euclidean space, one (composite) surface is distinguished as the exterior. In the more general case, this is not always possible.&lt;/documentation&gt;
10247:             *                      &lt;/annotation&gt;
10248:             *                  &lt;/element&gt;
10249:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
10250:             *                      name="interior" type="gml:SurfacePropertyType"&gt;
10251:             *                      &lt;annotation&gt;
10252:             *                          &lt;appinfo&gt;
10253:             *                              &lt;sch:pattern name="Check either href or content not both"&gt;
10254:             *                                  &lt;sch:rule context="gml:interior"&gt;
10255:             *                                      &lt;sch:extends rule="hrefOrContent"/&gt;
10256:             *                                  &lt;/sch:rule&gt;
10257:             *                              &lt;/sch:pattern&gt;
10258:             *                          &lt;/appinfo&gt;
10259:             *                          &lt;documentation&gt;Boundaries of solids are similar to surface boundaries.&lt;/documentation&gt;
10260:             *                      &lt;/annotation&gt;
10261:             *                  &lt;/element&gt;
10262:             *              &lt;/sequence&gt;
10263:             *          &lt;/extension&gt;
10264:             *      &lt;/complexContent&gt;
10265:             *  &lt;/complexType&gt;
10266:             *
10267:             *    </code>
10268:             *   </pre>
10269:             * </p>
10270:             *
10271:             * @generated
10272:             */
10273:            public static final AttributeType SOLIDTYPE_TYPE = AttributeTypeFactory
10274:                    .newAttributeType("SolidType", java.lang.Object.class);
10275:
10276:            /**
10277:             * <p>
10278:             *  <pre>
10279:             *   <code>
10280:             *  &lt;complexType name="TinType"&gt;
10281:             *      &lt;annotation&gt;
10282:             *          &lt;documentation&gt;A tin is a triangulated surface that uses
10283:             *     the Delauny algorithm or a similar algorithm complemented with
10284:             *     consideration of breaklines, stoplines, and maximum length of
10285:             *     triangle sides. These networks satisfy the Delauny's criterion
10286:             *     away from the modifications: Fore each triangle in the
10287:             *     network, the circle passing through its vertices does not
10288:             *     contain, in its interior, the vertex of any other triangle.&lt;/documentation&gt;
10289:             *      &lt;/annotation&gt;
10290:             *      &lt;complexContent&gt;
10291:             *          &lt;extension base="gml:TriangulatedSurfaceType"&gt;
10292:             *              &lt;sequence&gt;
10293:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
10294:             *                      name="stopLines" type="gml:LineStringSegmentArrayPropertyType"&gt;
10295:             *                      &lt;annotation&gt;
10296:             *                          &lt;documentation&gt;Stoplines are lines where the local
10297:             *         continuity or regularity of the surface is questionable.
10298:             *         In the area of these pathologies, triangles intersecting
10299:             *         a stopline shall be removed from the tin surface, leaving
10300:             *         holes in the surface. If coincidence occurs on surface
10301:             *         boundary triangles, the result shall be a change of the
10302:             *         surface boundary. Stoplines contains all these
10303:             *         pathological segments as a set of line strings.&lt;/documentation&gt;
10304:             *                      &lt;/annotation&gt;
10305:             *                  &lt;/element&gt;
10306:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
10307:             *                      name="breakLines" type="gml:LineStringSegmentArrayPropertyType"&gt;
10308:             *                      &lt;annotation&gt;
10309:             *                          &lt;documentation&gt;Breaklines are lines of a critical
10310:             *         nature to the shape of the surface, representing local
10311:             *         ridges, or depressions (such as drainage lines) in the
10312:             *         surface. As such their constituent segments must be
10313:             *         included in the tin eve if doing so
10314:             *         violates the Delauny criterion. Break lines contains these
10315:             *         critical segments as a set of line strings.&lt;/documentation&gt;
10316:             *                      &lt;/annotation&gt;
10317:             *                  &lt;/element&gt;
10318:             *                  &lt;element name="maxLength" type="gml:LengthType"&gt;
10319:             *                      &lt;annotation&gt;
10320:             *                          &lt;documentation&gt;Areas of the surface where data is not
10321:             *         sufficiently dense to assure reasonable calculation shall be
10322:             *         removed by adding a retention criterion for triangles based
10323:             *         on the length of their sides. For many triangle sides
10324:             *         exceeding maximum length, the adjacent triangles to that
10325:             *         triangle side shall be removed from the surface.&lt;/documentation&gt;
10326:             *                      &lt;/annotation&gt;
10327:             *                  &lt;/element&gt;
10328:             *                  &lt;element name="controlPoint"&gt;
10329:             *                      &lt;annotation&gt;
10330:             *                          &lt;documentation&gt;The corners of the triangles in the TIN
10331:             *    are often referred to as pots. ControlPoint shall contain a
10332:             *    set of the GM_Position used as posts for this TIN. Since each
10333:             *    TIN contains triangles, there must be at least 3 posts. The
10334:             *         order in which these points are given does not affect the
10335:             *         surface that is represented. Application schemas may add
10336:             *         information based on ordering of control points to facilitate
10337:             *         the reconstruction of the TIN from the control points.&lt;/documentation&gt;
10338:             *                      &lt;/annotation&gt;
10339:             *                      &lt;complexType&gt;
10340:             *                          &lt;choice&gt;
10341:             *                              &lt;element ref="gml:posList"/&gt;
10342:             *                              &lt;group maxOccurs="unbounded" minOccurs="3" ref="gml:geometricPositionGroup"/&gt;
10343:             *                          &lt;/choice&gt;
10344:             *                      &lt;/complexType&gt;
10345:             *                  &lt;/element&gt;
10346:             *              &lt;/sequence&gt;
10347:             *          &lt;/extension&gt;
10348:             *      &lt;/complexContent&gt;
10349:             *  &lt;/complexType&gt;
10350:             *
10351:             *    </code>
10352:             *   </pre>
10353:             * </p>
10354:             *
10355:             * @generated
10356:             */
10357:            public static final AttributeType TINTYPE_TYPE = AttributeTypeFactory
10358:                    .newAttributeType("TinType", java.lang.Object.class);
10359:
10360:            /**
10361:             * <p>
10362:             *  <pre>
10363:             *   <code>
10364:             *  &lt;complexType name="DynamicFeatureType"&gt;
10365:             *      &lt;annotation&gt;
10366:             *          &lt;documentation&gt;A dynamic feature may possess a history and/or a timestamp.&lt;/documentation&gt;
10367:             *      &lt;/annotation&gt;
10368:             *      &lt;complexContent&gt;
10369:             *          &lt;extension base="gml:AbstractFeatureType"&gt;
10370:             *              &lt;group ref="gml:dynamicProperties"/&gt;
10371:             *          &lt;/extension&gt;
10372:             *      &lt;/complexContent&gt;
10373:             *  &lt;/complexType&gt;
10374:             *
10375:             *    </code>
10376:             *   </pre>
10377:             * </p>
10378:             *
10379:             * @generated
10380:             */
10381:            public static final AttributeType DYNAMICFEATURETYPE_TYPE = AttributeTypeFactory
10382:                    .newAttributeType("DynamicFeatureType",
10383:                            java.lang.Object.class);
10384:
10385:            /**
10386:             * <p>
10387:             *  <pre>
10388:             *   <code>
10389:             *  &lt;complexType name="GeometricComplexPropertyType"&gt;
10390:             *      &lt;annotation&gt;
10391:             *          &lt;documentation&gt;A property that has a geometric complex as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.
10392:             *  NOTE: The allowed geometry elements contained in such a property (or referenced by it) have to be modelled by an XML Schema choice element since the composites inherit both from geometric complex *and* geometric primitive and are already part of the _GeometricPrimitive substitution group.&lt;/documentation&gt;
10393:             *      &lt;/annotation&gt;
10394:             *      &lt;sequence minOccurs="0"&gt;
10395:             *          &lt;choice&gt;
10396:             *              &lt;element ref="gml:GeometricComplex"/&gt;
10397:             *              &lt;element ref="gml:CompositeCurve"/&gt;
10398:             *              &lt;element ref="gml:CompositeSurface"/&gt;
10399:             *              &lt;element ref="gml:CompositeSolid"/&gt;
10400:             *          &lt;/choice&gt;
10401:             *      &lt;/sequence&gt;
10402:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
10403:             *          &lt;annotation&gt;
10404:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
10405:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
10406:             *          &lt;/annotation&gt;
10407:             *      &lt;/attributeGroup&gt;
10408:             *  &lt;/complexType&gt;
10409:             *
10410:             *    </code>
10411:             *   </pre>
10412:             * </p>
10413:             *
10414:             * @generated
10415:             */
10416:            public static final AttributeType GEOMETRICCOMPLEXPROPERTYTYPE_TYPE = AttributeTypeFactory
10417:                    .newAttributeType("GeometricComplexPropertyType",
10418:                            java.lang.Object.class);
10419:
10420:            /**
10421:             * <p>
10422:             *  <pre>
10423:             *   <code>
10424:             *  &lt;complexType name="OperationParameterGroupType"&gt;
10425:             *      &lt;annotation&gt;
10426:             *          &lt;documentation&gt;The definition of a group of parameters used by an operation method. This complexType is expected to be used or extended for all applicable operation methods, without defining operation-method-specialized element names.  &lt;/documentation&gt;
10427:             *      &lt;/annotation&gt;
10428:             *      &lt;complexContent&gt;
10429:             *          &lt;extension base="gml:OperationParameterGroupBaseType"&gt;
10430:             *              &lt;sequence&gt;
10431:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:groupID"&gt;
10432:             *                      &lt;annotation&gt;
10433:             *                          &lt;documentation&gt;Set of alternative identifications of this operation parameter group. The first groupID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
10434:             *                      &lt;/annotation&gt;
10435:             *                  &lt;/element&gt;
10436:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
10437:             *                      &lt;annotation&gt;
10438:             *                          &lt;documentation&gt;Comments on or information about this operation parameter group, including source information. &lt;/documentation&gt;
10439:             *                      &lt;/annotation&gt;
10440:             *                  &lt;/element&gt;
10441:             *                  &lt;element minOccurs="0" ref="gml:maximumOccurs"/&gt;
10442:             *                  &lt;element maxOccurs="unbounded" minOccurs="2" ref="gml:includesParameter"&gt;
10443:             *                      &lt;annotation&gt;
10444:             *                          &lt;documentation&gt;Unordered list of associations to the set of operation parameters that are members of this group. &lt;/documentation&gt;
10445:             *                      &lt;/annotation&gt;
10446:             *                  &lt;/element&gt;
10447:             *              &lt;/sequence&gt;
10448:             *          &lt;/extension&gt;
10449:             *      &lt;/complexContent&gt;
10450:             *  &lt;/complexType&gt;
10451:             *
10452:             *    </code>
10453:             *   </pre>
10454:             * </p>
10455:             *
10456:             * @generated
10457:             */
10458:            public static final AttributeType OPERATIONPARAMETERGROUPTYPE_TYPE = AttributeTypeFactory
10459:                    .newAttributeType("OperationParameterGroupType",
10460:                            java.lang.Object.class);
10461:
10462:            /**
10463:             * <p>
10464:             *  <pre>
10465:             *   <code>
10466:             *  &lt;complexType name="UserDefinedCSType"&gt;
10467:             *      &lt;annotation&gt;
10468:             *          &lt;documentation&gt;A two- or three-dimensional coordinate system that consists of any combination of coordinate axes not covered by any other coordinate system type. An example is a multilinear coordinate system which contains one coordinate axis that may have any 1-D shape which has no intersections with itself. This non-straight axis is supplemented by one or two straight axes to complete a 2 or 3 dimensional coordinate system. The non-straight axis is typically incrementally straight or curved. A UserDefinedCS shall have two or three usesAxis associations. &lt;/documentation&gt;
10469:             *      &lt;/annotation&gt;
10470:             *      &lt;complexContent&gt;
10471:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
10472:             *      &lt;/complexContent&gt;
10473:             *  &lt;/complexType&gt;
10474:             *
10475:             *    </code>
10476:             *   </pre>
10477:             * </p>
10478:             *
10479:             * @generated
10480:             */
10481:            public static final AttributeType USERDEFINEDCSTYPE_TYPE = AttributeTypeFactory
10482:                    .newAttributeType("UserDefinedCSType",
10483:                            java.lang.Object.class);
10484:
10485:            /**
10486:             * <p>
10487:             *  <pre>
10488:             *   <code>
10489:             *  &lt;complexType name="MultiGeometryPropertyType"&gt;
10490:             *      &lt;annotation&gt;
10491:             *          &lt;documentation&gt;A property that has a geometric aggregate as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
10492:             *      &lt;/annotation&gt;
10493:             *      &lt;sequence minOccurs="0"&gt;
10494:             *          &lt;element ref="gml:_GeometricAggregate"/&gt;
10495:             *      &lt;/sequence&gt;
10496:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
10497:             *          &lt;annotation&gt;
10498:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
10499:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
10500:             *          &lt;/annotation&gt;
10501:             *      &lt;/attributeGroup&gt;
10502:             *  &lt;/complexType&gt;
10503:             *
10504:             *    </code>
10505:             *   </pre>
10506:             * </p>
10507:             *
10508:             * @generated
10509:             */
10510:            public static final AttributeType MULTIGEOMETRYPROPERTYTYPE_TYPE = AttributeTypeFactory
10511:                    .newAttributeType("MultiGeometryPropertyType",
10512:                            java.lang.Object.class);
10513:
10514:            /**
10515:             * <p>
10516:             *  <pre>
10517:             *   <code>
10518:             *  &lt;complexType name="DataBlockType"&gt;
10519:             *      &lt;sequence&gt;
10520:             *          &lt;element ref="gml:rangeParameters"/&gt;
10521:             *          &lt;choice&gt;
10522:             *              &lt;element ref="gml:tupleList"/&gt;
10523:             *              &lt;element ref="gml:doubleOrNullTupleList"/&gt;
10524:             *          &lt;/choice&gt;
10525:             *      &lt;/sequence&gt;
10526:             *  &lt;/complexType&gt;
10527:             *
10528:             *    </code>
10529:             *   </pre>
10530:             * </p>
10531:             *
10532:             * @generated
10533:             */
10534:            public static final AttributeType DATABLOCKTYPE_TYPE = AttributeTypeFactory
10535:                    .newAttributeType("DataBlockType", java.lang.Object.class);
10536:
10537:            /**
10538:             * <p>
10539:             *  <pre>
10540:             *   <code>
10541:             *  &lt;simpleType name="TimeUnitType"&gt;
10542:             *      &lt;annotation&gt;
10543:             *          &lt;documentation xml:lang="en"&gt;Standard units for measuring time intervals (see ISO 31-1).&lt;/documentation&gt;
10544:             *      &lt;/annotation&gt;
10545:             *      &lt;union&gt;
10546:             *          &lt;simpleType&gt;
10547:             *              &lt;restriction base="string"&gt;
10548:             *                  &lt;enumeration value="year"/&gt;
10549:             *                  &lt;enumeration value="day"/&gt;
10550:             *                  &lt;enumeration value="hour"/&gt;
10551:             *                  &lt;enumeration value="minute"/&gt;
10552:             *                  &lt;enumeration value="second"/&gt;
10553:             *              &lt;/restriction&gt;
10554:             *          &lt;/simpleType&gt;
10555:             *          &lt;simpleType&gt;
10556:             *              &lt;restriction base="string"&gt;
10557:             *                  &lt;pattern value="other:\w{2,}"/&gt;
10558:             *              &lt;/restriction&gt;
10559:             *          &lt;/simpleType&gt;
10560:             *      &lt;/union&gt;
10561:             *  &lt;/simpleType&gt;
10562:             *
10563:             *    </code>
10564:             *   </pre>
10565:             * </p>
10566:             *
10567:             * @generated
10568:             */
10569:            public static final AttributeType TIMEUNITTYPE_TYPE = AttributeTypeFactory
10570:                    .newAttributeType("TimeUnitType", java.lang.Object.class);
10571:
10572:            /**
10573:             * <p>
10574:             *  <pre>
10575:             *   <code>
10576:             *  &lt;complexType abstract="true" name="AbstractTimeObjectType"&gt;
10577:             *      &lt;annotation&gt;
10578:             *          &lt;documentation xml:lang="en"&gt;The abstract supertype for temporal objects.&lt;/documentation&gt;
10579:             *      &lt;/annotation&gt;
10580:             *      &lt;complexContent&gt;
10581:             *          &lt;extension base="gml:AbstractGMLType"/&gt;
10582:             *      &lt;/complexContent&gt;
10583:             *  &lt;/complexType&gt;
10584:             *
10585:             *    </code>
10586:             *   </pre>
10587:             * </p>
10588:             *
10589:             * @generated
10590:             */
10591:            public static final AttributeType ABSTRACTTIMEOBJECTTYPE_TYPE = AttributeTypeFactory
10592:                    .newAttributeType("AbstractTimeObjectType",
10593:                            java.lang.Object.class);
10594:
10595:            /**
10596:             * <p>
10597:             *  <pre>
10598:             *   <code>
10599:             *  &lt;complexType name="TimeTopologyComplexPropertyType"&gt;
10600:             *      &lt;annotation&gt;
10601:             *          &lt;documentation&gt;A time topology complex property can either be any time topology complex element
10602:             *                           encapsulated in an element of this type or an XLink reference to a remote time topology complex element
10603:             *                           (where remote includes elements located elsewhere in the same document).
10604:             *                           Note that either the reference or the contained element must be given, but not both or none.&lt;/documentation&gt;
10605:             *      &lt;/annotation&gt;
10606:             *      &lt;sequence minOccurs="0"&gt;
10607:             *          &lt;element ref="gml:TimeTopologyComplex"/&gt;
10608:             *      &lt;/sequence&gt;
10609:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
10610:             *  &lt;/complexType&gt;
10611:             *
10612:             *    </code>
10613:             *   </pre>
10614:             * </p>
10615:             *
10616:             * @generated
10617:             */
10618:            public static final AttributeType TIMETOPOLOGYCOMPLEXPROPERTYTYPE_TYPE = AttributeTypeFactory
10619:                    .newAttributeType("TimeTopologyComplexPropertyType",
10620:                            java.lang.Object.class);
10621:
10622:            /**
10623:             * <p>
10624:             *  <pre>
10625:             *   <code>
10626:             *  &lt;complexType name="CurvePropertyType"&gt;
10627:             *      &lt;annotation&gt;
10628:             *          &lt;documentation&gt;A property that has a curve as its value domain can either be an appropriate geometry element encapsulated in an
10629:             *                          element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere
10630:             *                          in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
10631:             *      &lt;/annotation&gt;
10632:             *      &lt;sequence minOccurs="0"&gt;
10633:             *          &lt;element ref="gml:_Curve"/&gt;
10634:             *      &lt;/sequence&gt;
10635:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
10636:             *          &lt;annotation&gt;
10637:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote
10638:             *                                  resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific
10639:             *                                  set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium.
10640:             *                                  XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used
10641:             *                                  to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built
10642:             *                                  into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
10643:             *          &lt;/annotation&gt;
10644:             *      &lt;/attributeGroup&gt;
10645:             *  &lt;/complexType&gt;
10646:             *
10647:             *    </code>
10648:             *   </pre>
10649:             * </p>
10650:             *
10651:             * @generated
10652:             */
10653:            public static final AttributeType CURVEPROPERTYTYPE_TYPE = AttributeTypeFactory
10654:                    .newAttributeType("CurvePropertyType",
10655:                            MultiLineString.class);
10656:
10657:            /**
10658:             * <p>
10659:             *  <pre>
10660:             *   <code>
10661:             *  &lt;complexType name="TopoSolidType"&gt;
10662:             *      &lt;annotation&gt;
10663:             *          &lt;documentation&gt;The topological boundary of a TopoSolid consists of a set of directed faces. Note that all faces associated with the TopoSolid, including dangling faces, appear in the boundary. The coboundary of a TopoSolid is empty and hence requires no representation.&lt;/documentation&gt;
10664:             *      &lt;/annotation&gt;
10665:             *      &lt;complexContent&gt;
10666:             *          &lt;extension base="gml:AbstractTopoPrimitiveType"&gt;
10667:             *              &lt;sequence&gt;
10668:             *                  &lt;element maxOccurs="unbounded" ref="gml:directedFace"/&gt;
10669:             *              &lt;/sequence&gt;
10670:             *          &lt;/extension&gt;
10671:             *      &lt;/complexContent&gt;
10672:             *  &lt;/complexType&gt;
10673:             *
10674:             *    </code>
10675:             *   </pre>
10676:             * </p>
10677:             *
10678:             * @generated
10679:             */
10680:            public static final AttributeType TOPOSOLIDTYPE_TYPE = AttributeTypeFactory
10681:                    .newAttributeType("TopoSolidType", java.lang.Object.class);
10682:
10683:            /**
10684:             * <p>
10685:             *  <pre>
10686:             *   <code>
10687:             *  &lt;complexType name="QuantityPropertyType"&gt;
10688:             *      &lt;annotation&gt;
10689:             *          &lt;documentation&gt;Property whose content is a Quantity.&lt;/documentation&gt;
10690:             *      &lt;/annotation&gt;
10691:             *      &lt;complexContent&gt;
10692:             *          &lt;restriction base="gml:ValuePropertyType"&gt;
10693:             *              &lt;sequence minOccurs="0"&gt;
10694:             *                  &lt;element ref="gml:Quantity"/&gt;
10695:             *              &lt;/sequence&gt;
10696:             *          &lt;/restriction&gt;
10697:             *      &lt;/complexContent&gt;
10698:             *  &lt;/complexType&gt;
10699:             *
10700:             *    </code>
10701:             *   </pre>
10702:             * </p>
10703:             *
10704:             * @generated
10705:             */
10706:            public static final AttributeType QUANTITYPROPERTYTYPE_TYPE = AttributeTypeFactory
10707:                    .newAttributeType("QuantityPropertyType",
10708:                            java.lang.Object.class);
10709:
10710:            /**
10711:             * <p>
10712:             *  <pre>
10713:             *   <code>
10714:             *  &lt;complexType name="CodeType"&gt;
10715:             *      &lt;annotation&gt;
10716:             *          &lt;documentation&gt;Name or code with an (optional) authority.  Text token.
10717:             *        If the codeSpace attribute is present, then its value should identify a dictionary, thesaurus
10718:             *        or authority for the term, such as the organisation who assigned the value,
10719:             *        or the dictionary from which it is taken.
10720:             *        A text string with an optional codeSpace attribute. &lt;/documentation&gt;
10721:             *      &lt;/annotation&gt;
10722:             *      &lt;simpleContent&gt;
10723:             *          &lt;extension base="string"&gt;
10724:             *              &lt;attribute name="codeSpace" type="anyURI" use="optional"/&gt;
10725:             *          &lt;/extension&gt;
10726:             *      &lt;/simpleContent&gt;
10727:             *  &lt;/complexType&gt;
10728:             *
10729:             *    </code>
10730:             *   </pre>
10731:             * </p>
10732:             *
10733:             * @generated
10734:             */
10735:            public static final AttributeType CODETYPE_TYPE = AttributeTypeFactory
10736:                    .newAttributeType("CodeType", java.lang.Object.class);
10737:
10738:            /**
10739:             * <p>
10740:             *  <pre>
10741:             *   <code>
10742:             *  &lt;complexType name="StringOrRefType"&gt;
10743:             *      &lt;annotation&gt;
10744:             *          &lt;documentation&gt;This type is available wherever there is a need for a "text" type property. It is of string type, so the text can be included inline, but the value can also be referenced remotely via xlinks from the AssociationAttributeGroup. If the remote reference is present, then the value obtained by traversing the link should be used, and the string content of the element can be used for an annotation.&lt;/documentation&gt;
10745:             *      &lt;/annotation&gt;
10746:             *      &lt;simpleContent&gt;
10747:             *          &lt;extension base="string"&gt;
10748:             *              &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
10749:             *          &lt;/extension&gt;
10750:             *      &lt;/simpleContent&gt;
10751:             *  &lt;/complexType&gt;
10752:             *
10753:             *    </code>
10754:             *   </pre>
10755:             * </p>
10756:             *
10757:             * @generated
10758:             */
10759:            public static final AttributeType STRINGORREFTYPE_TYPE = AttributeTypeFactory
10760:                    .newAttributeType("StringOrRefType", java.lang.Object.class);
10761:
10762:            /**
10763:             * <p>
10764:             *  <pre>
10765:             *   <code>
10766:             *  &lt;complexType name="MultiPolygonType"&gt;
10767:             *      &lt;annotation&gt;
10768:             *          &lt;documentation&gt;A MultiPolygon is defined by one or more Polygons, referenced through polygonMember elements. Deprecated with GML version 3.0. Use MultiSurfaceType instead.&lt;/documentation&gt;
10769:             *      &lt;/annotation&gt;
10770:             *      &lt;complexContent&gt;
10771:             *          &lt;extension base="gml:AbstractGeometricAggregateType"&gt;
10772:             *              &lt;sequence&gt;
10773:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:polygonMember"/&gt;
10774:             *              &lt;/sequence&gt;
10775:             *          &lt;/extension&gt;
10776:             *      &lt;/complexContent&gt;
10777:             *  &lt;/complexType&gt;
10778:             *
10779:             *    </code>
10780:             *   </pre>
10781:             * </p>
10782:             *
10783:             * @generated
10784:             */
10785:            public static final AttributeType MULTIPOLYGONTYPE_TYPE = AttributeTypeFactory
10786:                    .newAttributeType("MultiPolygonType", MultiPolygon.class);
10787:
10788:            /**
10789:             * <p>
10790:             *  <pre>
10791:             *   <code>
10792:             *  &lt;complexType name="CompositeValueType"&gt;
10793:             *      &lt;annotation&gt;
10794:             *          &lt;documentation&gt;Aggregate value built from other Values using the Composite pattern. It contains zero or an arbitrary number of valueComponent elements, and zero or one valueComponents elements.  It may be used for strongly coupled aggregates (vectors, tensors) or for arbitrary collections of values.&lt;/documentation&gt;
10795:             *      &lt;/annotation&gt;
10796:             *      &lt;complexContent&gt;
10797:             *          &lt;extension base="gml:AbstractGMLType"&gt;
10798:             *              &lt;sequence&gt;
10799:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:valueComponent"/&gt;
10800:             *                  &lt;element minOccurs="0" ref="gml:valueComponents"/&gt;
10801:             *              &lt;/sequence&gt;
10802:             *          &lt;/extension&gt;
10803:             *      &lt;/complexContent&gt;
10804:             *  &lt;/complexType&gt;
10805:             *
10806:             *    </code>
10807:             *   </pre>
10808:             * </p>
10809:             *
10810:             * @generated
10811:             */
10812:            public static final AttributeType COMPOSITEVALUETYPE_TYPE = AttributeTypeFactory
10813:                    .newAttributeType("CompositeValueType",
10814:                            java.lang.Object.class);
10815:
10816:            /**
10817:             * <p>
10818:             *  <pre>
10819:             *   <code>
10820:             *  &lt;complexType abstract="true" name="OperationParameterBaseType"&gt;
10821:             *      &lt;annotation&gt;
10822:             *          &lt;documentation&gt;Basic encoding for operation parameter objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
10823:             *      &lt;/annotation&gt;
10824:             *      &lt;complexContent&gt;
10825:             *          &lt;restriction base="gml:AbstractGeneralOperationParameterType"&gt;
10826:             *              &lt;sequence&gt;
10827:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
10828:             *                  &lt;element ref="gml:parameterName"/&gt;
10829:             *                  &lt;element minOccurs="0" ref="gml:minimumOccurs"/&gt;
10830:             *              &lt;/sequence&gt;
10831:             *              &lt;attribute ref="gml:id" use="required"/&gt;
10832:             *          &lt;/restriction&gt;
10833:             *      &lt;/complexContent&gt;
10834:             *  &lt;/complexType&gt;
10835:             *
10836:             *    </code>
10837:             *   </pre>
10838:             * </p>
10839:             *
10840:             * @generated
10841:             */
10842:            public static final AttributeType OPERATIONPARAMETERBASETYPE_TYPE = AttributeTypeFactory
10843:                    .newAttributeType("OperationParameterBaseType",
10844:                            java.lang.Object.class);
10845:
10846:            /**
10847:             * <p>
10848:             *  <pre>
10849:             *   <code>
10850:             *  &lt;complexType name="EngineeringDatumType"&gt;
10851:             *      &lt;annotation&gt;
10852:             *          &lt;documentation&gt;An engineering datum defines the origin of an engineering coordinate reference system, and is used in a region around that origin. This origin can be fixed with respect to the earth (such as a defined point at a construction site), or be a defined point on a moving vehicle (such as on a ship or satellite). &lt;/documentation&gt;
10853:             *      &lt;/annotation&gt;
10854:             *      &lt;complexContent&gt;
10855:             *          &lt;extension base="gml:AbstractDatumType"/&gt;
10856:             *      &lt;/complexContent&gt;
10857:             *  &lt;/complexType&gt;
10858:             *
10859:             *    </code>
10860:             *   </pre>
10861:             * </p>
10862:             *
10863:             * @generated
10864:             */
10865:            public static final AttributeType ENGINEERINGDATUMTYPE_TYPE = AttributeTypeFactory
10866:                    .newAttributeType("EngineeringDatumType",
10867:                            java.lang.Object.class);
10868:
10869:            /**
10870:             * <p>
10871:             *  <pre>
10872:             *   <code>
10873:             *  &lt;simpleType name="CurveInterpolationType"&gt;
10874:             *      &lt;annotation&gt;
10875:             *          &lt;documentation&gt;CurveInterpolationType is a list of codes that may be used to identify the interpolation mechanisms specified by an
10876:             *  application schema.&lt;/documentation&gt;
10877:             *      &lt;/annotation&gt;
10878:             *      &lt;restriction base="string"&gt;
10879:             *          &lt;enumeration value="linear"/&gt;
10880:             *          &lt;enumeration value="geodesic"/&gt;
10881:             *          &lt;enumeration value="circularArc3Points"/&gt;
10882:             *          &lt;enumeration value="circularArc2PointWithBulge"/&gt;
10883:             *          &lt;enumeration value="circularArcCenterPointWithRadius"/&gt;
10884:             *          &lt;enumeration value="elliptical"/&gt;
10885:             *          &lt;enumeration value="clothoid"/&gt;
10886:             *          &lt;enumeration value="conic"/&gt;
10887:             *          &lt;enumeration value="polynomialSpline"/&gt;
10888:             *          &lt;enumeration value="cubicSpline"/&gt;
10889:             *          &lt;enumeration value="rationalSpline"/&gt;
10890:             *      &lt;/restriction&gt;
10891:             *  &lt;/simpleType&gt;
10892:             *
10893:             *    </code>
10894:             *   </pre>
10895:             * </p>
10896:             *
10897:             * @generated
10898:             */
10899:            public static final AttributeType CURVEINTERPOLATIONTYPE_TYPE = AttributeTypeFactory
10900:                    .newAttributeType("CurveInterpolationType",
10901:                            java.lang.Object.class);
10902:
10903:            /**
10904:             * <p>
10905:             *  <pre>
10906:             *   <code>
10907:             *  &lt;complexType name="TopoVolumePropertyType"&gt;
10908:             *      &lt;sequence&gt;
10909:             *          &lt;element ref="gml:TopoVolume"/&gt;
10910:             *      &lt;/sequence&gt;
10911:             *  &lt;/complexType&gt;
10912:             *
10913:             *    </code>
10914:             *   </pre>
10915:             * </p>
10916:             *
10917:             * @generated
10918:             */
10919:            public static final AttributeType TOPOVOLUMEPROPERTYTYPE_TYPE = AttributeTypeFactory
10920:                    .newAttributeType("TopoVolumePropertyType",
10921:                            java.lang.Object.class);
10922:
10923:            /**
10924:             * <p>
10925:             *  <pre>
10926:             *   <code>
10927:             *  &lt;complexType name="TimeOrdinalEraType"&gt;
10928:             *      &lt;annotation&gt;
10929:             *          &lt;documentation xml:lang="en"&gt;Ordinal temporal reference systems are often hierarchically structured
10930:             *        such that an ordinal era at a given level of the hierarchy includes a
10931:             *        sequence of shorter, coterminous ordinal eras. This captured using the member/group properties.
10932:             *
10933:             *        Note that in this schema, TIme Ordinal Era is patterned on TimeEdge, which is a variation from ISO 19108.
10934:             *        This is in order to fulfill the requirements of ordinal reference systems based on eras delimited by
10935:             *        named points or nodes, which are common in geology, archeology, etc.
10936:             *
10937:             *        This change is subject of a change proposal to ISO&lt;/documentation&gt;
10938:             *      &lt;/annotation&gt;
10939:             *      &lt;complexContent&gt;
10940:             *          &lt;extension base="gml:DefinitionType"&gt;
10941:             *              &lt;sequence&gt;
10942:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
10943:             *                      name="relatedTime" type="gml:RelatedTimeType"/&gt;
10944:             *                  &lt;element name="start" type="gml:TimeNodePropertyType"/&gt;
10945:             *                  &lt;element name="end" type="gml:TimeNodePropertyType"/&gt;
10946:             *                  &lt;element minOccurs="0" name="extent" type="gml:TimePeriodPropertyType"/&gt;
10947:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
10948:             *                      name="member" type="gml:TimeOrdinalEraPropertyType"&gt;
10949:             *                      &lt;annotation&gt;
10950:             *                          &lt;documentation&gt;An Era may be composed of several member Eras. The "member" element implements the association to the Era at the next level down the hierarchy.  "member" follows the standard GML property pattern whereby its (complex) value may be either described fully inline, or may be the target of a link carried on the member element and described fully elsewhere, either in the same document or from another service.&lt;/documentation&gt;
10951:             *                      &lt;/annotation&gt;
10952:             *                  &lt;/element&gt;
10953:             *                  &lt;element minOccurs="0" name="group" type="gml:ReferenceType"&gt;
10954:             *                      &lt;annotation&gt;
10955:             *                          &lt;documentation&gt;In a particular Time System, an Era may be a member of a group.  The "group" element implements the back-pointer to the Era at the next level up in the hierarchy.
10956:             *
10957:             *  If the hierarchy is represented by describing the nested components fully in the their nested position inside "member" elements, then the parent can be easily inferred, so the group property is unnecessary.
10958:             *
10959:             *  However, if the hierarchy is represented by links carried on the "member" property elements, pointing to Eras described fully elsewhere, then it may be useful for a child (member) era to carry an explicit pointer back to its parent (group) Era.&lt;/documentation&gt;
10960:             *                      &lt;/annotation&gt;
10961:             *                  &lt;/element&gt;
10962:             *              &lt;/sequence&gt;
10963:             *          &lt;/extension&gt;
10964:             *      &lt;/complexContent&gt;
10965:             *  &lt;/complexType&gt;
10966:             *
10967:             *    </code>
10968:             *   </pre>
10969:             * </p>
10970:             *
10971:             * @generated
10972:             */
10973:            public static final AttributeType TIMEORDINALERATYPE_TYPE = AttributeTypeFactory
10974:                    .newAttributeType("TimeOrdinalEraType",
10975:                            java.lang.Object.class);
10976:
10977:            /**
10978:             * <p>
10979:             *  <pre>
10980:             *   <code>
10981:             *  &lt;complexType abstract="true" name="AbstractRingType"&gt;
10982:             *      &lt;annotation&gt;
10983:             *          &lt;documentation&gt;An abstraction of a ring to support surface boundaries of different complexity.&lt;/documentation&gt;
10984:             *      &lt;/annotation&gt;
10985:             *      &lt;complexContent&gt;
10986:             *          &lt;extension base="gml:AbstractGeometryType"/&gt;
10987:             *      &lt;/complexContent&gt;
10988:             *  &lt;/complexType&gt;
10989:             *
10990:             *    </code>
10991:             *   </pre>
10992:             * </p>
10993:             *
10994:             * @generated
10995:             */
10996:            public static final AttributeType ABSTRACTRINGTYPE_TYPE = AttributeTypeFactory
10997:                    .newAttributeType("AbstractRingType",
10998:                            java.lang.Object.class);
10999:
11000:            /**
11001:             * <p>
11002:             *  <pre>
11003:             *   <code>
11004:             *  &lt;complexType name="OperationMethodType"&gt;
11005:             *      &lt;annotation&gt;
11006:             *          &lt;documentation&gt;Definition of an algorithm used to perform a coordinate operation. Most operation methods use a number of operation parameters, although some coordinate conversions use none. Each coordinate operation using the method assigns values to these parameters. &lt;/documentation&gt;
11007:             *      &lt;/annotation&gt;
11008:             *      &lt;complexContent&gt;
11009:             *          &lt;extension base="gml:OperationMethodBaseType"&gt;
11010:             *              &lt;sequence&gt;
11011:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:methodID"&gt;
11012:             *                      &lt;annotation&gt;
11013:             *                          &lt;documentation&gt;Set of alternative identifications of this operation method. The first methodID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
11014:             *                      &lt;/annotation&gt;
11015:             *                  &lt;/element&gt;
11016:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
11017:             *                      &lt;annotation&gt;
11018:             *                          &lt;documentation&gt;Comments on or information about this operation method, including source information.&lt;/documentation&gt;
11019:             *                      &lt;/annotation&gt;
11020:             *                  &lt;/element&gt;
11021:             *                  &lt;element ref="gml:methodFormula"/&gt;
11022:             *                  &lt;element ref="gml:sourceDimensions"/&gt;
11023:             *                  &lt;element ref="gml:targetDimensions"/&gt;
11024:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:usesParameter"&gt;
11025:             *                      &lt;annotation&gt;
11026:             *                          &lt;documentation&gt;Unordered list of associations to the set of operation parameters and parameter groups used by this operation method. &lt;/documentation&gt;
11027:             *                      &lt;/annotation&gt;
11028:             *                  &lt;/element&gt;
11029:             *              &lt;/sequence&gt;
11030:             *          &lt;/extension&gt;
11031:             *      &lt;/complexContent&gt;
11032:             *  &lt;/complexType&gt;
11033:             *
11034:             *    </code>
11035:             *   </pre>
11036:             * </p>
11037:             *
11038:             * @generated
11039:             */
11040:            public static final AttributeType OPERATIONMETHODTYPE_TYPE = AttributeTypeFactory
11041:                    .newAttributeType("OperationMethodType",
11042:                            java.lang.Object.class);
11043:
11044:            /**
11045:             * <p>
11046:             *  <pre>
11047:             *   <code>
11048:             *  &lt;complexType abstract="true" name="OperationParameterGroupBaseType"&gt;
11049:             *      &lt;annotation&gt;
11050:             *          &lt;documentation&gt;Basic encoding for operation parameter group objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
11051:             *      &lt;/annotation&gt;
11052:             *      &lt;complexContent&gt;
11053:             *          &lt;restriction base="gml:AbstractGeneralOperationParameterType"&gt;
11054:             *              &lt;sequence&gt;
11055:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
11056:             *                  &lt;element ref="gml:groupName"/&gt;
11057:             *                  &lt;element minOccurs="0" ref="gml:minimumOccurs"/&gt;
11058:             *              &lt;/sequence&gt;
11059:             *              &lt;attribute ref="gml:id" use="required"/&gt;
11060:             *          &lt;/restriction&gt;
11061:             *      &lt;/complexContent&gt;
11062:             *  &lt;/complexType&gt;
11063:             *
11064:             *    </code>
11065:             *   </pre>
11066:             * </p>
11067:             *
11068:             * @generated
11069:             */
11070:            public static final AttributeType OPERATIONPARAMETERGROUPBASETYPE_TYPE = AttributeTypeFactory
11071:                    .newAttributeType("OperationParameterGroupBaseType",
11072:                            java.lang.Object.class);
11073:
11074:            /**
11075:             * <p>
11076:             *  <pre>
11077:             *   <code>
11078:             *  &lt;complexType name="CoordinateSystemAxisType"&gt;
11079:             *      &lt;annotation&gt;
11080:             *          &lt;documentation&gt;Definition of a coordinate system axis. &lt;/documentation&gt;
11081:             *      &lt;/annotation&gt;
11082:             *      &lt;complexContent&gt;
11083:             *          &lt;extension base="gml:CoordinateSystemAxisBaseType"&gt;
11084:             *              &lt;sequence&gt;
11085:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:axisID"&gt;
11086:             *                      &lt;annotation&gt;
11087:             *                          &lt;documentation&gt;Set of alternative identifications of this coordinate system axis. The first axisID, if any, is normally the primary identification code, and any others are aliases. &lt;/documentation&gt;
11088:             *                      &lt;/annotation&gt;
11089:             *                  &lt;/element&gt;
11090:             *                  &lt;element minOccurs="0" ref="gml:remarks"&gt;
11091:             *                      &lt;annotation&gt;
11092:             *                          &lt;documentation&gt;Comments on or information about this coordinate system axis, including data source information. &lt;/documentation&gt;
11093:             *                      &lt;/annotation&gt;
11094:             *                  &lt;/element&gt;
11095:             *                  &lt;element ref="gml:axisAbbrev"/&gt;
11096:             *                  &lt;element ref="gml:axisDirection"/&gt;
11097:             *              &lt;/sequence&gt;
11098:             *              &lt;attribute ref="gml:uom" use="required"/&gt;
11099:             *          &lt;/extension&gt;
11100:             *      &lt;/complexContent&gt;
11101:             *  &lt;/complexType&gt;
11102:             *
11103:             *    </code>
11104:             *   </pre>
11105:             * </p>
11106:             *
11107:             * @generated
11108:             */
11109:            public static final AttributeType COORDINATESYSTEMAXISTYPE_TYPE = AttributeTypeFactory
11110:                    .newAttributeType("CoordinateSystemAxisType",
11111:                            java.lang.Object.class);
11112:
11113:            /**
11114:             * <p>
11115:             *  <pre>
11116:             *   <code>
11117:             *  &lt;complexType abstract="true" name="AbstractCurveSegmentType"&gt;
11118:             *      &lt;annotation&gt;
11119:             *          &lt;documentation&gt;Curve segment defines a homogeneous segment of a curve.&lt;/documentation&gt;
11120:             *      &lt;/annotation&gt;
11121:             *      &lt;sequence/&gt;
11122:             *      &lt;attribute default="0" name="numDerivativesAtStart" type="integer" use="optional"&gt;
11123:             *          &lt;annotation&gt;
11124:             *              &lt;documentation&gt;The attribute "numDerivativesAtStart" specifies the type of continuity between this curve segment and its predecessor. If this is the first curve segment in the curve, one of these values, as appropriate, is ignored. The default value of "0" means simple continuity, which is a mandatory minimum level of continuity. This level is referred to as "C 0 " in mathematical texts. A value of 1 means that the function and its first derivative are continuous at the appropriate end point: "C 1 " continuity. A value of "n" for any integer means the function and its first n derivatives are continuous: "C n " continuity.
11125:             *  NOTE: Use of these values is only appropriate when the basic curve definition is an underdetermined system. For example, line string segments cannot support continuity above C 0 , since there is no spare control parameter to adjust the incoming angle at the end points of the segment. Spline functions on the other hand often have extra degrees of freedom on end segments that allow them to adjust the values of the derivatives to support C 1 or higher continuity.&lt;/documentation&gt;
11126:             *          &lt;/annotation&gt;
11127:             *      &lt;/attribute&gt;
11128:             *      &lt;attribute default="0" name="numDerivativesAtEnd" type="integer" use="optional"&gt;
11129:             *          &lt;annotation&gt;
11130:             *              &lt;documentation&gt;The attribute "numDerivativesAtEnd" specifies the type of continuity between this curve segment and its successor. If this is the last curve segment in the curve, one of these values, as appropriate, is ignored. The default value of "0" means simple continuity, which is a mandatory minimum level of continuity. This level is referred to as "C 0 " in mathematical texts. A value of 1 means that the function and its first derivative are continuous at the appropriate end point: "C 1 " continuity. A value of "n" for any integer means the function and its first n derivatives are continuous: "C n " continuity.
11131:             *  NOTE: Use of these values is only appropriate when the basic curve definition is an underdetermined system. For example, line string segments cannot support continuity above C 0 , since there is no spare control parameter to adjust the incoming angle at the end points of the segment. Spline functions on the other hand often have extra degrees of freedom on end segments that allow them to adjust the values of the derivatives to support C 1 or higher continuity.&lt;/documentation&gt;
11132:             *          &lt;/annotation&gt;
11133:             *      &lt;/attribute&gt;
11134:             *      &lt;attribute default="0" name="numDerivativeInterior" type="integer" use="optional"&gt;
11135:             *          &lt;annotation&gt;
11136:             *              &lt;documentation&gt;The attribute "numDerivativesInterior" specifies the type of continuity that is guaranteed interior to the curve. The default value of "0" means simple continuity, which is a mandatory minimum level of continuity. This level is referred to as "C 0 " in mathematical texts. A value of 1 means that the function and its first derivative are continuous at the appropriate end point: "C 1 " continuity. A value of "n" for any integer means the function and its first n derivatives are continuous: "C n " continuity.
11137:             *  NOTE: Use of these values is only appropriate when the basic curve definition is an underdetermined system. For example, line string segments cannot support continuity above C 0 , since there is no spare control parameter to adjust the incoming angle at the end points of the segment. Spline functions on the other hand often have extra degrees of freedom on end segments that allow them to adjust the values of the derivatives to support C 1 or higher continuity.&lt;/documentation&gt;
11138:             *          &lt;/annotation&gt;
11139:             *      &lt;/attribute&gt;
11140:             *  &lt;/complexType&gt;
11141:             *
11142:             *    </code>
11143:             *   </pre>
11144:             * </p>
11145:             *
11146:             * @generated
11147:             */
11148:            public static final AttributeType ABSTRACTCURVESEGMENTTYPE_TYPE = AttributeTypeFactory
11149:                    .newAttributeType("AbstractCurveSegmentType",
11150:                            java.lang.Object.class);
11151:
11152:            /**
11153:             * <p>
11154:             *  <pre>
11155:             *   <code>
11156:             *  &lt;complexType abstract="true" name="AbstractGeneralParameterValueType"&gt;
11157:             *      &lt;annotation&gt;
11158:             *          &lt;documentation&gt;Abstract parameter value or group of parameter values.
11159:             *
11160:             *  This abstract complexType is expected to be extended and restricted for well-known operation methods with many instances, in Application Schemas that define operation-method-specialized element names and contents. Specific parameter value elements are directly contained in concrete subtypes, not in this abstract type. All concrete types derived from this type shall extend this type to include one "...Value" element with an appropriate type, which should be one of the element types allowed in the ParameterValueType. In addition, all derived concrete types shall extend this type to include a "valueOfParameter" element that references one element substitutable for the "OperationParameter" element. &lt;/documentation&gt;
11161:             *      &lt;/annotation&gt;
11162:             *      &lt;sequence/&gt;
11163:             *  &lt;/complexType&gt;
11164:             *
11165:             *    </code>
11166:             *   </pre>
11167:             * </p>
11168:             *
11169:             * @generated
11170:             */
11171:            public static final AttributeType ABSTRACTGENERALPARAMETERVALUETYPE_TYPE = AttributeTypeFactory
11172:                    .newAttributeType("AbstractGeneralParameterValueType",
11173:                            java.lang.Object.class);
11174:
11175:            /**
11176:             * <p>
11177:             *  <pre>
11178:             *   <code>
11179:             *  &lt;complexType abstract="true" name="OperationMethodBaseType"&gt;
11180:             *      &lt;annotation&gt;
11181:             *          &lt;documentation&gt;Basic encoding for operation method objects, simplifying and restricting the DefinitionType as needed. &lt;/documentation&gt;
11182:             *      &lt;/annotation&gt;
11183:             *      &lt;complexContent&gt;
11184:             *          &lt;restriction base="gml:DefinitionType"&gt;
11185:             *              &lt;sequence&gt;
11186:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/&gt;
11187:             *                  &lt;element ref="gml:methodName"/&gt;
11188:             *              &lt;/sequence&gt;
11189:             *              &lt;attribute ref="gml:id" use="required"/&gt;
11190:             *          &lt;/restriction&gt;
11191:             *      &lt;/complexContent&gt;
11192:             *  &lt;/complexType&gt;
11193:             *
11194:             *    </code>
11195:             *   </pre>
11196:             * </p>
11197:             *
11198:             * @generated
11199:             */
11200:            public static final AttributeType OPERATIONMETHODBASETYPE_TYPE = AttributeTypeFactory
11201:                    .newAttributeType("OperationMethodBaseType",
11202:                            java.lang.Object.class);
11203:
11204:            /**
11205:             * <p>
11206:             *  <pre>
11207:             *   <code>
11208:             *  &lt;complexType name="MultiSolidPropertyType"&gt;
11209:             *      &lt;annotation&gt;
11210:             *          &lt;documentation&gt;A property that has a collection of solids as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
11211:             *      &lt;/annotation&gt;
11212:             *      &lt;sequence minOccurs="0"&gt;
11213:             *          &lt;element ref="gml:MultiSolid"/&gt;
11214:             *      &lt;/sequence&gt;
11215:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
11216:             *          &lt;annotation&gt;
11217:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
11218:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
11219:             *          &lt;/annotation&gt;
11220:             *      &lt;/attributeGroup&gt;
11221:             *  &lt;/complexType&gt;
11222:             *
11223:             *    </code>
11224:             *   </pre>
11225:             * </p>
11226:             *
11227:             * @generated
11228:             */
11229:            public static final AttributeType MULTISOLIDPROPERTYTYPE_TYPE = AttributeTypeFactory
11230:                    .newAttributeType("MultiSolidPropertyType",
11231:                            java.lang.Object.class);
11232:
11233:            /**
11234:             * <p>
11235:             *  <pre>
11236:             *   <code>
11237:             *  &lt;complexType name="PolygonPatchType"&gt;
11238:             *      &lt;annotation&gt;
11239:             *          &lt;documentation&gt;A PolygonPatch is a surface patch that is defined by a set of boundary curves and an underlying surface to which these curves adhere. The curves are coplanar and the polygon uses planar interpolation in its interior. Implements GM_Polygon of ISO 19107.&lt;/documentation&gt;
11240:             *      &lt;/annotation&gt;
11241:             *      &lt;complexContent&gt;
11242:             *          &lt;extension base="gml:AbstractSurfacePatchType"&gt;
11243:             *              &lt;sequence&gt;
11244:             *                  &lt;element minOccurs="0" ref="gml:exterior"/&gt;
11245:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:interior"/&gt;
11246:             *              &lt;/sequence&gt;
11247:             *              &lt;attribute fixed="planar" name="interpolation" type="gml:SurfaceInterpolationType"&gt;
11248:             *                  &lt;annotation&gt;
11249:             *                      &lt;documentation&gt;The attribute "interpolation" specifies the interpolation mechanism used for this surface patch. Currently only planar surface patches are defined in GML 3, the attribute is fixed to "planar", i.e. the interpolation method shall return points on a single plane. The boundary of the patch shall be contained within that plane.&lt;/documentation&gt;
11250:             *                  &lt;/annotation&gt;
11251:             *              &lt;/attribute&gt;
11252:             *          &lt;/extension&gt;
11253:             *      &lt;/complexContent&gt;
11254:             *  &lt;/complexType&gt;
11255:             *
11256:             *    </code>
11257:             *   </pre>
11258:             * </p>
11259:             *
11260:             * @generated
11261:             */
11262:            public static final AttributeType POLYGONPATCHTYPE_TYPE = AttributeTypeFactory
11263:                    .newAttributeType("PolygonPatchType",
11264:                            java.lang.Object.class);
11265:
11266:            /**
11267:             * <p>
11268:             *  <pre>
11269:             *   <code>
11270:             *  &lt;simpleType name="DrawingTypeType"&gt;
11271:             *      &lt;annotation&gt;
11272:             *          &lt;documentation&gt;Graph-specific styling property.&lt;/documentation&gt;
11273:             *      &lt;/annotation&gt;
11274:             *      &lt;restriction base="string"&gt;
11275:             *          &lt;enumeration value="POLYLINE"/&gt;
11276:             *          &lt;enumeration value="ORTHOGONAL"/&gt;
11277:             *      &lt;/restriction&gt;
11278:             *  &lt;/simpleType&gt;
11279:             *
11280:             *    </code>
11281:             *   </pre>
11282:             * </p>
11283:             *
11284:             * @generated
11285:             */
11286:            public static final AttributeType DRAWINGTYPETYPE_TYPE = AttributeTypeFactory
11287:                    .newAttributeType("DrawingTypeType", java.lang.Object.class);
11288:
11289:            /**
11290:             * <p>
11291:             *  <pre>
11292:             *   <code>
11293:             *  &lt;complexType name="SphereType"&gt;
11294:             *      &lt;annotation&gt;
11295:             *          &lt;documentation&gt;A sphere is a gridded surface given as a
11296:             *     family of circles whose positions vary linearly along the
11297:             *     axis of the sphere, and whise radius varies in proportions to
11298:             *     the cosine function of the central angle. The horizontal
11299:             *     circles resemble lines of constant latitude, and the vertical
11300:             *     arcs resemble lines of constant longitude.
11301:             *     NOTE! If the control points are sorted in terms of increasing
11302:             *     longitude, and increasing latitude, the upNormal of a sphere
11303:             *     is the outward normal.
11304:             *     EXAMPLE If we take a gridded set of latitudes and longitudes
11305:             *     in degrees,(u,v) such as
11306:             *
11307:             *          (-90,-180)  (-90,-90)  (-90,0)  (-90,  90) (-90, 180)
11308:             *          (-45,-180)  (-45,-90)  (-45,0)  (-45,  90) (-45, 180)
11309:             *          (  0,-180)  (  0,-90)  (  0,0)  (  0,  90) (  0, 180)
11310:             *          ( 45,-180)  ( 45,-90)  ( 45,0)  ( 45, -90) ( 45, 180)
11311:             *          ( 90,-180)  ( 90,-90)  ( 90,0)  ( 90, -90) ( 90, 180)
11312:             *
11313:             *     And map these points to 3D using the usual equations (where R
11314:             *     is the radius of the required sphere).
11315:             *
11316:             *      z = R sin u
11317:             *      x = (R cos u)(sin v)
11318:             *      y = (R cos u)(cos v)
11319:             *
11320:             *     We have a sphere of Radius R, centred at (0,0), as a gridded
11321:             *     surface. Notice that the entire first row and the entire last
11322:             *     row of the control points map to a single point in each 3D
11323:             *     Euclidean space, North and South poles respectively, and that
11324:             *     each horizontal curve closes back on itself forming a
11325:             *     geometric cycle. This gives us a metrically bounded (of finite
11326:             *     size), topologically unbounded (not having a boundary, a
11327:             *     cycle) surface.&lt;/documentation&gt;
11328:             *      &lt;/annotation&gt;
11329:             *      &lt;complexContent&gt;
11330:             *          &lt;extension base="gml:AbstractGriddedSurfaceType"&gt;
11331:             *              &lt;attribute fixed="circularArc3Points"
11332:             *                  name="horizontalCurveType" type="gml:CurveInterpolationType"/&gt;
11333:             *              &lt;attribute fixed="circularArc3Points"
11334:             *                  name="verticalCurveType" type="gml:CurveInterpolationType"/&gt;
11335:             *          &lt;/extension&gt;
11336:             *      &lt;/complexContent&gt;
11337:             *  &lt;/complexType&gt;
11338:             *
11339:             *    </code>
11340:             *   </pre>
11341:             * </p>
11342:             *
11343:             * @generated
11344:             */
11345:            public static final AttributeType SPHERETYPE_TYPE = AttributeTypeFactory
11346:                    .newAttributeType("SphereType", java.lang.Object.class);
11347:
11348:            /**
11349:             * <p>
11350:             *  <pre>
11351:             *   <code>
11352:             *  &lt;simpleType name="ArcMinutesType"&gt;
11353:             *      &lt;annotation&gt;
11354:             *          &lt;documentation&gt;Integer number of arc-minutes in a degree-minute-second angular value.&lt;/documentation&gt;
11355:             *      &lt;/annotation&gt;
11356:             *      &lt;restriction base="nonNegativeInteger"&gt;
11357:             *          &lt;maxInclusive value="59"/&gt;
11358:             *      &lt;/restriction&gt;
11359:             *  &lt;/simpleType&gt;
11360:             *
11361:             *    </code>
11362:             *   </pre>
11363:             * </p>
11364:             *
11365:             * @generated
11366:             */
11367:            public static final AttributeType ARCMINUTESTYPE_TYPE = AttributeTypeFactory
11368:                    .newAttributeType("ArcMinutesType", java.lang.Object.class);
11369:
11370:            /**
11371:             * <p>
11372:             *  <pre>
11373:             *   <code>
11374:             *  &lt;complexType name="PointPropertyType"&gt;
11375:             *      &lt;annotation&gt;
11376:             *          &lt;documentation&gt;A property that has a point as its value domain can either be an appropriate geometry element encapsulated in an
11377:             *                          element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located
11378:             *                          elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
11379:             *      &lt;/annotation&gt;
11380:             *      &lt;sequence minOccurs="0"&gt;
11381:             *          &lt;element ref="gml:Point"/&gt;
11382:             *      &lt;/sequence&gt;
11383:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
11384:             *          &lt;annotation&gt;
11385:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote
11386:             *                                  resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific
11387:             *                                  set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium.
11388:             *                                  XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be
11389:             *                                  used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has
11390:             *                                  been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
11391:             *          &lt;/annotation&gt;
11392:             *      &lt;/attributeGroup&gt;
11393:             *  &lt;/complexType&gt;
11394:             *
11395:             *    </code>
11396:             *   </pre>
11397:             * </p>
11398:             *
11399:             * @generated
11400:             */
11401:            public static final AttributeType POINTPROPERTYTYPE_TYPE = AttributeTypeFactory
11402:                    .newAttributeType("PointPropertyType", Point.class);
11403:
11404:            /**
11405:             * <p>
11406:             *  <pre>
11407:             *   <code>
11408:             *  &lt;complexType name="RingType"&gt;
11409:             *      &lt;annotation&gt;
11410:             *          &lt;documentation&gt;A Ring is used to represent a single connected component of a surface boundary. It consists of a sequence of curves connected in a cycle (an object whose boundary is empty).
11411:             *  A Ring is structurally similar to a composite curve in that the endPoint of each curve in the sequence is the startPoint of the next curve in the Sequence. Since the sequence is circular, there is no exception to this rule. Each ring, like all boundaries, is a cycle and each ring is simple.
11412:             *  NOTE: Even though each Ring is simple, the boundary need not be simple. The easiest case of this is where one of the interior rings of a surface is tangent to its exterior ring.&lt;/documentation&gt;
11413:             *      &lt;/annotation&gt;
11414:             *      &lt;complexContent&gt;
11415:             *          &lt;extension base="gml:AbstractRingType"&gt;
11416:             *              &lt;sequence&gt;
11417:             *                  &lt;element maxOccurs="unbounded" ref="gml:curveMember"&gt;
11418:             *                      &lt;annotation&gt;
11419:             *                          &lt;documentation&gt;This element references or contains one curve in the composite curve. The curves are contiguous, the collection of curves is ordered.
11420:             *  NOTE: This definition allows for a nested structure, i.e. a CompositeCurve may use, for example, another CompositeCurve as a curve member.&lt;/documentation&gt;
11421:             *                      &lt;/annotation&gt;
11422:             *                  &lt;/element&gt;
11423:             *              &lt;/sequence&gt;
11424:             *          &lt;/extension&gt;
11425:             *      &lt;/complexContent&gt;
11426:             *  &lt;/complexType&gt;
11427:             *
11428:             *    </code>
11429:             *   </pre>
11430:             * </p>
11431:             *
11432:             * @generated
11433:             */
11434:            public static final AttributeType RINGTYPE_TYPE = AttributeTypeFactory
11435:                    .newAttributeType("RingType", java.lang.Object.class);
11436:
11437:            /**
11438:             * <p>
11439:             *  <pre>
11440:             *   <code>
11441:             *  &lt;complexType name="SurfacePropertyType"&gt;
11442:             *      &lt;annotation&gt;
11443:             *          &lt;documentation&gt;A property that has a surface as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
11444:             *      &lt;/annotation&gt;
11445:             *      &lt;sequence minOccurs="0"&gt;
11446:             *          &lt;element ref="gml:_Surface"/&gt;
11447:             *      &lt;/sequence&gt;
11448:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
11449:             *          &lt;annotation&gt;
11450:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
11451:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
11452:             *          &lt;/annotation&gt;
11453:             *      &lt;/attributeGroup&gt;
11454:             *  &lt;/complexType&gt;
11455:             *
11456:             *    </code>
11457:             *   </pre>
11458:             * </p>
11459:             *
11460:             * @generated
11461:             */
11462:            public static final AttributeType SURFACEPROPERTYTYPE_TYPE = AttributeTypeFactory
11463:                    .newAttributeType("SurfacePropertyType", Polygon.class);
11464:
11465:            /**
11466:             * <p>
11467:             *  <pre>
11468:             *   <code>
11469:             *  &lt;complexType name="GridType"&gt;
11470:             *      &lt;annotation&gt;
11471:             *          &lt;documentation&gt;An unrectified grid, which is a network composed of two or more sets of equally spaced parallel lines in which the members of each set intersect the members of the other sets at right angles.&lt;/documentation&gt;
11472:             *      &lt;/annotation&gt;
11473:             *      &lt;complexContent&gt;
11474:             *          &lt;extension base="gml:AbstractGeometryType"&gt;
11475:             *              &lt;sequence&gt;
11476:             *                  &lt;element name="limits" type="gml:GridLimitsType"/&gt;
11477:             *                  &lt;element maxOccurs="unbounded" name="axisName" type="string"/&gt;
11478:             *              &lt;/sequence&gt;
11479:             *              &lt;attribute name="dimension" type="positiveInteger" use="required"/&gt;
11480:             *          &lt;/extension&gt;
11481:             *      &lt;/complexContent&gt;
11482:             *  &lt;/complexType&gt;
11483:             *
11484:             *    </code>
11485:             *   </pre>
11486:             * </p>
11487:             *
11488:             * @generated
11489:             */
11490:            public static final AttributeType GRIDTYPE_TYPE = AttributeTypeFactory
11491:                    .newAttributeType("GridType", java.lang.Object.class);
11492:
11493:            /**
11494:             * <p>
11495:             *  <pre>
11496:             *   <code>
11497:             *  &lt;complexType name="GeocentricCRSRefType"&gt;
11498:             *      &lt;annotation&gt;
11499:             *          &lt;documentation&gt;Association to a geocentric coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
11500:             *      &lt;/annotation&gt;
11501:             *      &lt;sequence minOccurs="0"&gt;
11502:             *          &lt;element ref="gml:GeocentricCRS"/&gt;
11503:             *      &lt;/sequence&gt;
11504:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
11505:             *  &lt;/complexType&gt;
11506:             *
11507:             *    </code>
11508:             *   </pre>
11509:             * </p>
11510:             *
11511:             * @generated
11512:             */
11513:            public static final AttributeType GEOCENTRICCRSREFTYPE_TYPE = AttributeTypeFactory
11514:                    .newAttributeType("GeocentricCRSRefType",
11515:                            java.lang.Object.class);
11516:
11517:            /**
11518:             * <p>
11519:             *  <pre>
11520:             *   <code>
11521:             *  &lt;complexType name="CodeOrNullListType"&gt;
11522:             *      &lt;annotation&gt;
11523:             *          &lt;documentation&gt;List of values on a uniform nominal scale.  List of text tokens.
11524:             *        In a list context a token should not include any spaces, so xsd:Name is used instead of xsd:string.
11525:             *        A member of the list may be a typed null.
11526:             *        If a codeSpace attribute is present, then its value is a reference to
11527:             *        a Reference System for the value, a dictionary or code list.&lt;/documentation&gt;
11528:             *      &lt;/annotation&gt;
11529:             *      &lt;simpleContent&gt;
11530:             *          &lt;extension base="gml:NameOrNullList"&gt;
11531:             *              &lt;attribute name="codeSpace" type="anyURI" use="optional"/&gt;
11532:             *          &lt;/extension&gt;
11533:             *      &lt;/simpleContent&gt;
11534:             *  &lt;/complexType&gt;
11535:             *
11536:             *    </code>
11537:             *   </pre>
11538:             * </p>
11539:             *
11540:             * @generated
11541:             */
11542:            public static final AttributeType CODEORNULLLISTTYPE_TYPE = AttributeTypeFactory
11543:                    .newAttributeType("CodeOrNullListType",
11544:                            java.lang.Object.class);
11545:
11546:            /**
11547:             * <p>
11548:             *  <pre>
11549:             *   <code>
11550:             *  &lt;complexType name="SurfaceArrayPropertyType"&gt;
11551:             *      &lt;annotation&gt;
11552:             *          &lt;documentation&gt;A container for an array of surfaces. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements is not supported.&lt;/documentation&gt;
11553:             *      &lt;/annotation&gt;
11554:             *      &lt;sequence&gt;
11555:             *          &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:_Surface"/&gt;
11556:             *      &lt;/sequence&gt;
11557:             *  &lt;/complexType&gt;
11558:             *
11559:             *    </code>
11560:             *   </pre>
11561:             * </p>
11562:             *
11563:             * @generated
11564:             */
11565:            public static final AttributeType SURFACEARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
11566:                    .newAttributeType("SurfaceArrayPropertyType",
11567:                            java.lang.Object.class);
11568:
11569:            /**
11570:             * <p>
11571:             *  <pre>
11572:             *   <code>
11573:             *  &lt;complexType name="SolidArrayPropertyType"&gt;
11574:             *      &lt;annotation&gt;
11575:             *          &lt;documentation&gt;A container for an array of solids. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements is not supported.&lt;/documentation&gt;
11576:             *      &lt;/annotation&gt;
11577:             *      &lt;sequence maxOccurs="unbounded" minOccurs="0"&gt;
11578:             *          &lt;element ref="gml:_Solid"/&gt;
11579:             *      &lt;/sequence&gt;
11580:             *  &lt;/complexType&gt;
11581:             *
11582:             *    </code>
11583:             *   </pre>
11584:             * </p>
11585:             *
11586:             * @generated
11587:             */
11588:            public static final AttributeType SOLIDARRAYPROPERTYTYPE_TYPE = AttributeTypeFactory
11589:                    .newAttributeType("SolidArrayPropertyType",
11590:                            java.lang.Object.class);
11591:
11592:            /**
11593:             * <p>
11594:             *  <pre>
11595:             *   <code>
11596:             *  &lt;complexType abstract="true" name="AbstractGeneralOperationParameterType"&gt;
11597:             *      &lt;annotation&gt;
11598:             *          &lt;documentation&gt;Abstract definition of a parameter or group of parameters used by an operation method. &lt;/documentation&gt;
11599:             *      &lt;/annotation&gt;
11600:             *      &lt;complexContent&gt;
11601:             *          &lt;extension base="gml:DefinitionType"&gt;
11602:             *              &lt;sequence&gt;
11603:             *                  &lt;element minOccurs="0" ref="gml:minimumOccurs"/&gt;
11604:             *              &lt;/sequence&gt;
11605:             *          &lt;/extension&gt;
11606:             *      &lt;/complexContent&gt;
11607:             *  &lt;/complexType&gt;
11608:             *
11609:             *    </code>
11610:             *   </pre>
11611:             * </p>
11612:             *
11613:             * @generated
11614:             */
11615:            public static final AttributeType ABSTRACTGENERALOPERATIONPARAMETERTYPE_TYPE = AttributeTypeFactory
11616:                    .newAttributeType("AbstractGeneralOperationParameterType",
11617:                            java.lang.Object.class);
11618:
11619:            /**
11620:             * <p>
11621:             *  <pre>
11622:             *   <code>
11623:             *  &lt;complexType name="LocationPropertyType"&gt;
11624:             *      &lt;annotation&gt;
11625:             *          &lt;documentation&gt;Convenience property for generalised location.
11626:             *        A representative location for plotting or analysis.
11627:             *        Often augmented by one or more additional geometry properties with more specific semantics.&lt;/documentation&gt;
11628:             *          &lt;documentation&gt;Deprecated in GML 3.1.0&lt;/documentation&gt;
11629:             *      &lt;/annotation&gt;
11630:             *      &lt;sequence minOccurs="0"&gt;
11631:             *          &lt;choice&gt;
11632:             *              &lt;element ref="gml:_Geometry"/&gt;
11633:             *              &lt;element ref="gml:LocationKeyWord"/&gt;
11634:             *              &lt;element ref="gml:LocationString"/&gt;
11635:             *              &lt;element ref="gml:Null"/&gt;
11636:             *          &lt;/choice&gt;
11637:             *      &lt;/sequence&gt;
11638:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
11639:             *  &lt;/complexType&gt;
11640:             *
11641:             *    </code>
11642:             *   </pre>
11643:             * </p>
11644:             *
11645:             * @generated
11646:             */
11647:            public static final AttributeType LOCATIONPROPERTYTYPE_TYPE = AttributeTypeFactory
11648:                    .newAttributeType("LocationPropertyType",
11649:                            java.lang.Object.class);
11650:
11651:            /**
11652:             * <p>
11653:             *  <pre>
11654:             *   <code>
11655:             *  &lt;complexType name="SphericalCSRefType"&gt;
11656:             *      &lt;annotation&gt;
11657:             *          &lt;documentation&gt;Association to a spherical coordinate system, either referencing or containing the definition of that coordinate system. &lt;/documentation&gt;
11658:             *      &lt;/annotation&gt;
11659:             *      &lt;sequence minOccurs="0"&gt;
11660:             *          &lt;element ref="gml:SphericalCS"/&gt;
11661:             *      &lt;/sequence&gt;
11662:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
11663:             *  &lt;/complexType&gt;
11664:             *
11665:             *    </code>
11666:             *   </pre>
11667:             * </p>
11668:             *
11669:             * @generated
11670:             */
11671:            public static final AttributeType SPHERICALCSREFTYPE_TYPE = AttributeTypeFactory
11672:                    .newAttributeType("SphericalCSRefType",
11673:                            java.lang.Object.class);
11674:
11675:            /**
11676:             * <p>
11677:             *  <pre>
11678:             *   <code>
11679:             *  &lt;complexType name="TopoComplexType"&gt;
11680:             *      &lt;annotation&gt;
11681:             *          &lt;documentation&gt;This type represents a TP_Complex capable of holding topological primitives.&lt;/documentation&gt;
11682:             *      &lt;/annotation&gt;
11683:             *      &lt;complexContent&gt;
11684:             *          &lt;extension base="gml:AbstractTopologyType"&gt;
11685:             *              &lt;sequence&gt;
11686:             *                  &lt;element ref="gml:maximalComplex"/&gt;
11687:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:superComplex"/&gt;
11688:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:subComplex"/&gt;
11689:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:topoPrimitiveMember"/&gt;
11690:             *                  &lt;element minOccurs="0" ref="gml:topoPrimitiveMembers"/&gt;
11691:             *              &lt;/sequence&gt;
11692:             *              &lt;attribute default="false" name="isMaximal" type="boolean"/&gt;
11693:             *          &lt;/extension&gt;
11694:             *      &lt;/complexContent&gt;
11695:             *  &lt;/complexType&gt;
11696:             *
11697:             *    </code>
11698:             *   </pre>
11699:             * </p>
11700:             *
11701:             * @generated
11702:             */
11703:            public static final AttributeType TOPOCOMPLEXTYPE_TYPE = AttributeTypeFactory
11704:                    .newAttributeType("TopoComplexType", java.lang.Object.class);
11705:
11706:            /**
11707:             * <p>
11708:             *  <pre>
11709:             *   <code>
11710:             *  &lt;complexType name="LabelStylePropertyType"&gt;
11711:             *      &lt;annotation&gt;
11712:             *          &lt;documentation/&gt;
11713:             *      &lt;/annotation&gt;
11714:             *      &lt;sequence&gt;
11715:             *          &lt;element minOccurs="0" ref="gml:LabelStyle"/&gt;
11716:             *      &lt;/sequence&gt;
11717:             *      &lt;attribute name="about" type="anyURI" use="optional"/&gt;
11718:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
11719:             *  &lt;/complexType&gt;
11720:             *
11721:             *    </code>
11722:             *   </pre>
11723:             * </p>
11724:             *
11725:             * @generated
11726:             */
11727:            public static final AttributeType LABELSTYLEPROPERTYTYPE_TYPE = AttributeTypeFactory
11728:                    .newAttributeType("LabelStylePropertyType",
11729:                            java.lang.Object.class);
11730:
11731:            /**
11732:             * <p>
11733:             *  <pre>
11734:             *   <code>
11735:             *  &lt;simpleType name="QNameList"&gt;
11736:             *      &lt;annotation&gt;
11737:             *          &lt;documentation&gt;A set of values, representing a list of token with the lexical value space of QName. The tokens are seperated by whitespace.&lt;/documentation&gt;
11738:             *      &lt;/annotation&gt;
11739:             *      &lt;list itemType="QName"/&gt;
11740:             *  &lt;/simpleType&gt;
11741:             *
11742:             *    </code>
11743:             *   </pre>
11744:             * </p>
11745:             *
11746:             * @generated
11747:             */
11748:            public static final AttributeType QNAMELIST_TYPE = AttributeTypeFactory
11749:                    .newAttributeType("QNameList", java.lang.Object.class);
11750:
11751:            /**
11752:             * <p>
11753:             *  <pre>
11754:             *   <code>
11755:             *  &lt;complexType name="CoverageFunctionType"&gt;
11756:             *      &lt;annotation&gt;
11757:             *          &lt;documentation&gt;The function or rule which defines the map from members of the domainSet to the range.
11758:             *        More functions will be added to this list&lt;/documentation&gt;
11759:             *      &lt;/annotation&gt;
11760:             *      &lt;choice&gt;
11761:             *          &lt;element ref="gml:MappingRule"/&gt;
11762:             *          &lt;element ref="gml:GridFunction"/&gt;
11763:             *      &lt;/choice&gt;
11764:             *  &lt;/complexType&gt;
11765:             *
11766:             *    </code>
11767:             *   </pre>
11768:             * </p>
11769:             *
11770:             * @generated
11771:             */
11772:            public static final AttributeType COVERAGEFUNCTIONTYPE_TYPE = AttributeTypeFactory
11773:                    .newAttributeType("CoverageFunctionType",
11774:                            java.lang.Object.class);
11775:
11776:            /**
11777:             * <p>
11778:             *  <pre>
11779:             *   <code>
11780:             *  &lt;complexType name="BagType"&gt;
11781:             *      &lt;annotation&gt;
11782:             *          &lt;documentation&gt;A non-abstract generic collection type that can be used as a document element for a collection of any GML types - Geometries, Topologies, Features ...
11783:             *
11784:             *  FeatureCollections may only contain Features.  GeometryCollections may only contain Geometrys.  Bags are less constrained  they must contain objects that are substitutable for gml:_Object.  This may mix several levels, including Features, Definitions, Dictionaries, Geometries etc.
11785:             *
11786:             *  The content model would ideally be
11787:             *     member 0..*
11788:             *     members 0..1
11789:             *     member 0..*
11790:             *  for maximum flexibility in building a collection from both homogeneous and distinct components:
11791:             *  included "member" elements each contain a single Object
11792:             *  an included "members" element contains a set of Objects
11793:             *
11794:             *  However, this is non-deterministic, thus prohibited by XSD.&lt;/documentation&gt;
11795:             *      &lt;/annotation&gt;
11796:             *      &lt;complexContent&gt;
11797:             *          &lt;extension base="gml:AbstractGMLType"&gt;
11798:             *              &lt;sequence&gt;
11799:             *                  &lt;element maxOccurs="unbounded" minOccurs="0" ref="gml:member"/&gt;
11800:             *                  &lt;element minOccurs="0" ref="gml:members"/&gt;
11801:             *              &lt;/sequence&gt;
11802:             *          &lt;/extension&gt;
11803:             *      &lt;/complexContent&gt;
11804:             *  &lt;/complexType&gt;
11805:             *
11806:             *    </code>
11807:             *   </pre>
11808:             * </p>
11809:             *
11810:             * @generated
11811:             */
11812:            public static final AttributeType BAGTYPE_TYPE = AttributeTypeFactory
11813:                    .newAttributeType("BagType", java.lang.Object.class);
11814:
11815:            /**
11816:             * <p>
11817:             *  <pre>
11818:             *   <code>
11819:             *  &lt;complexType name="MeasureType"&gt;
11820:             *      &lt;annotation&gt;
11821:             *          &lt;documentation&gt;Number with a scale.
11822:             *        The value of uom (Units Of Measure) attribute is a reference to a Reference System for the amount, either a ratio or position scale. &lt;/documentation&gt;
11823:             *      &lt;/annotation&gt;
11824:             *      &lt;simpleContent&gt;
11825:             *          &lt;extension base="double"&gt;
11826:             *              &lt;attribute name="uom" type="anyURI" use="required"/&gt;
11827:             *          &lt;/extension&gt;
11828:             *      &lt;/simpleContent&gt;
11829:             *  &lt;/complexType&gt;
11830:             *
11831:             *    </code>
11832:             *   </pre>
11833:             * </p>
11834:             *
11835:             * @generated
11836:             */
11837:            public static final AttributeType MEASURETYPE_TYPE = AttributeTypeFactory
11838:                    .newAttributeType("MeasureType", Measure.class);
11839:
11840:            /**
11841:             * <p>
11842:             *  <pre>
11843:             *   <code>
11844:             *  &lt;complexType name="SpeedType"&gt;
11845:             *      &lt;annotation&gt;
11846:             *          &lt;documentation&gt;Value of a speed, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a velocity, such as metres per second or miles per hour.&lt;/documentation&gt;
11847:             *      &lt;/annotation&gt;
11848:             *      &lt;simpleContent&gt;
11849:             *          &lt;restriction base="gml:MeasureType"/&gt;
11850:             *      &lt;/simpleContent&gt;
11851:             *  &lt;/complexType&gt;
11852:             *
11853:             *    </code>
11854:             *   </pre>
11855:             * </p>
11856:             *
11857:             * @generated
11858:             */
11859:            public static final AttributeType SPEEDTYPE_TYPE = AttributeTypeFactory
11860:                    .newAttributeType("SpeedType", java.lang.Object.class);
11861:
11862:            /**
11863:             * <p>
11864:             *  <pre>
11865:             *   <code>
11866:             *  &lt;simpleType name="SequenceRuleNames"&gt;
11867:             *      &lt;annotation&gt;
11868:             *          &lt;documentation&gt;List of codes (adopted from ISO 19123 Annex C) that identifies the rule for traversing a grid to correspond with the sequence of members of the rangeSet.&lt;/documentation&gt;
11869:             *      &lt;/annotation&gt;
11870:             *      &lt;restriction base="string"&gt;
11871:             *          &lt;enumeration value="Linear"/&gt;
11872:             *          &lt;enumeration value="Boustrophedonic"/&gt;
11873:             *          &lt;enumeration value="Cantor-diagonal"/&gt;
11874:             *          &lt;enumeration value="Spiral"/&gt;
11875:             *          &lt;enumeration value="Morton"/&gt;
11876:             *          &lt;enumeration value="Hilbert"/&gt;
11877:             *      &lt;/restriction&gt;
11878:             *  &lt;/simpleType&gt;
11879:             *
11880:             *    </code>
11881:             *   </pre>
11882:             * </p>
11883:             *
11884:             * @generated
11885:             */
11886:            public static final AttributeType SEQUENCERULENAMES_TYPE = AttributeTypeFactory
11887:                    .newAttributeType("SequenceRuleNames",
11888:                            java.lang.Object.class);
11889:
11890:            /**
11891:             * <p>
11892:             *  <pre>
11893:             *   <code>
11894:             *  &lt;complexType abstract="true" name="AbstractTimeSliceType"&gt;
11895:             *      &lt;annotation&gt;
11896:             *          &lt;documentation xml:lang="en"&gt;A timeslice encapsulates the time-varying properties of a dynamic feature--it
11897:             *          must be extended to represent a timestamped projection of a feature. The dataSource
11898:             *          property describes how the temporal data was acquired.&lt;/documentation&gt;
11899:             *      &lt;/annotation&gt;
11900:             *      &lt;complexContent&gt;
11901:             *          &lt;extension base="gml:AbstractGMLType"&gt;
11902:             *              &lt;sequence&gt;
11903:             *                  &lt;element ref="gml:validTime"/&gt;
11904:             *                  &lt;element minOccurs="0" ref="gml:dataSource"/&gt;
11905:             *              &lt;/sequence&gt;
11906:             *          &lt;/extension&gt;
11907:             *      &lt;/complexContent&gt;
11908:             *  &lt;/complexType&gt;
11909:             *
11910:             *    </code>
11911:             *   </pre>
11912:             * </p>
11913:             *
11914:             * @generated
11915:             */
11916:            public static final AttributeType ABSTRACTTIMESLICETYPE_TYPE = AttributeTypeFactory
11917:                    .newAttributeType("AbstractTimeSliceType",
11918:                            java.lang.Object.class);
11919:
11920:            /**
11921:             * <p>
11922:             *  <pre>
11923:             *   <code>
11924:             *  &lt;complexType abstract="true" name="AbstractGeometryType"&gt;
11925:             *      &lt;annotation&gt;
11926:             *          &lt;documentation&gt;All geometry elements are derived directly or indirectly from this abstract supertype. A geometry element may
11927:             *                          have an identifying attribute ("gml:id"), a name (attribute "name") and a description (attribute "description"). It may be associated
11928:             *                          with a spatial reference system (attribute "srsName"). The following rules shall be adhered: - Every geometry type shall derive
11929:             *                          from this abstract type. - Every geometry element (i.e. an element of a geometry type) shall be directly or indirectly in the
11930:             *                          substitution group of _Geometry.&lt;/documentation&gt;
11931:             *      &lt;/annotation&gt;
11932:             *      &lt;complexContent&gt;
11933:             *          &lt;extension base="gml:AbstractGMLType"&gt;
11934:             *              &lt;attribute name="gid" type="string" use="optional"&gt;
11935:             *                  &lt;annotation&gt;
11936:             *                      &lt;documentation&gt;This attribute is included for backward compatibility with GML 2 and is deprecated with GML 3.
11937:             *                                                  This identifer is superceded by "gml:id" inherited from AbstractGMLType. The attribute "gid" should not be used
11938:             *                                                  anymore and may be deleted in future versions of GML without further notice.&lt;/documentation&gt;
11939:             *                  &lt;/annotation&gt;
11940:             *              &lt;/attribute&gt;
11941:             *              &lt;attributeGroup ref="gml:SRSReferenceGroup"/&gt;
11942:             *          &lt;/extension&gt;
11943:             *      &lt;/complexContent&gt;
11944:             *  &lt;/complexType&gt;
11945:             *
11946:             *    </code>
11947:             *   </pre>
11948:             * </p>
11949:             *
11950:             * @generated
11951:             */
11952:            public static final AttributeType ABSTRACTGEOMETRYTYPE_TYPE = AttributeTypeFactory
11953:                    .newAttributeType("AbstractGeometryType", Geometry.class);
11954:
11955:            /**
11956:             * <p>
11957:             *  <pre>
11958:             *   <code>
11959:             *  &lt;complexType name="SingleOperationRefType"&gt;
11960:             *      &lt;annotation&gt;
11961:             *          &lt;documentation&gt;Association to a single operation, either referencing or containing the definition of that single operation. &lt;/documentation&gt;
11962:             *      &lt;/annotation&gt;
11963:             *      &lt;sequence minOccurs="0"&gt;
11964:             *          &lt;element ref="gml:_SingleOperation"/&gt;
11965:             *      &lt;/sequence&gt;
11966:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
11967:             *  &lt;/complexType&gt;
11968:             *
11969:             *    </code>
11970:             *   </pre>
11971:             * </p>
11972:             *
11973:             * @generated
11974:             */
11975:            public static final AttributeType SINGLEOPERATIONREFTYPE_TYPE = AttributeTypeFactory
11976:                    .newAttributeType("SingleOperationRefType",
11977:                            java.lang.Object.class);
11978:
11979:            /**
11980:             * <p>
11981:             *  <pre>
11982:             *   <code>
11983:             *  &lt;complexType name="TriangulatedSurfaceType"&gt;
11984:             *      &lt;annotation&gt;
11985:             *          &lt;documentation&gt;A triangulated surface is a polyhedral
11986:             *     surface that is composed only of triangles. There is no
11987:             *     restriction on how the triangulation is derived.&lt;/documentation&gt;
11988:             *      &lt;/annotation&gt;
11989:             *      &lt;complexContent&gt;
11990:             *          &lt;restriction base="gml:SurfaceType"&gt;
11991:             *              &lt;sequence&gt;
11992:             *                  &lt;group ref="gml:StandardObjectProperties"/&gt;
11993:             *                  &lt;element ref="gml:trianglePatches"&gt;
11994:             *                      &lt;annotation&gt;
11995:             *                          &lt;documentation&gt;This property encapsulates the patches of
11996:             *        the triangulated surface.&lt;/documentation&gt;
11997:             *                      &lt;/annotation&gt;
11998:             *                  &lt;/element&gt;
11999:             *              &lt;/sequence&gt;
12000:             *          &lt;/restriction&gt;
12001:             *      &lt;/complexContent&gt;
12002:             *  &lt;/complexType&gt;
12003:             *
12004:             *    </code>
12005:             *   </pre>
12006:             * </p>
12007:             *
12008:             * @generated
12009:             */
12010:            public static final AttributeType TRIANGULATEDSURFACETYPE_TYPE = AttributeTypeFactory
12011:                    .newAttributeType("TriangulatedSurfaceType",
12012:                            java.lang.Object.class);
12013:
12014:            /**
12015:             * <p>
12016:             *  <pre>
12017:             *   <code>
12018:             *  &lt;complexType name="GeographicCRSType"&gt;
12019:             *      &lt;annotation&gt;
12020:             *          &lt;documentation&gt;A coordinate reference system based on an ellipsoidal approximation of the geoid; this provides an accurate representation of the geometry of geographic features for a large portion of the earth's surface.&lt;/documentation&gt;
12021:             *      &lt;/annotation&gt;
12022:             *      &lt;complexContent&gt;
12023:             *          &lt;extension base="gml:AbstractReferenceSystemType"&gt;
12024:             *              &lt;sequence&gt;
12025:             *                  &lt;element ref="gml:usesEllipsoidalCS"/&gt;
12026:             *                  &lt;element ref="gml:usesGeodeticDatum"/&gt;
12027:             *              &lt;/sequence&gt;
12028:             *          &lt;/extension&gt;
12029:             *      &lt;/complexContent&gt;
12030:             *  &lt;/complexType&gt;
12031:             *
12032:             *    </code>
12033:             *   </pre>
12034:             * </p>
12035:             *
12036:             * @generated
12037:             */
12038:            public static final AttributeType GEOGRAPHICCRSTYPE_TYPE = AttributeTypeFactory
12039:                    .newAttributeType("GeographicCRSType",
12040:                            java.lang.Object.class);
12041:
12042:            /**
12043:             * <p>
12044:             *  <pre>
12045:             *   <code>
12046:             *  &lt;complexType name="CylindricalCSType"&gt;
12047:             *      &lt;annotation&gt;
12048:             *          &lt;documentation&gt;A three-dimensional coordinate system consisting of a polar coordinate system extended by a straight coordinate axis perpendicular to the plane spanned by the polar coordinate system. A CylindricalCS shall have three usesAxis associations. &lt;/documentation&gt;
12049:             *      &lt;/annotation&gt;
12050:             *      &lt;complexContent&gt;
12051:             *          &lt;extension base="gml:AbstractCoordinateSystemType"/&gt;
12052:             *      &lt;/complexContent&gt;
12053:             *  &lt;/complexType&gt;
12054:             *
12055:             *    </code>
12056:             *   </pre>
12057:             * </p>
12058:             *
12059:             * @generated
12060:             */
12061:            public static final AttributeType CYLINDRICALCSTYPE_TYPE = AttributeTypeFactory
12062:                    .newAttributeType("CylindricalCSType",
12063:                            java.lang.Object.class);
12064:
12065:            /**
12066:             * <p>
12067:             *  <pre>
12068:             *   <code>
12069:             *  &lt;simpleType name="SuccessionType"&gt;
12070:             *      &lt;annotation&gt;
12071:             *          &lt;documentation&gt;Feature succession is a semantic relationship derived from evaluation of observer, and
12072:             *                          Feature Substitution, Feature Division and Feature Fusion are defined as associations between
12073:             *                          previous features and next features in the temporal context.
12074:             *                          Successions shall be represented in either following two ways.
12075:             *                          * define a temporal topological complex element as a feature element
12076:             *                          * define an association same as temporal topological complex between features.&lt;/documentation&gt;
12077:             *      &lt;/annotation&gt;
12078:             *      &lt;restriction base="string"&gt;
12079:             *          &lt;enumeration value="substitution"/&gt;
12080:             *          &lt;enumeration value="division"/&gt;
12081:             *          &lt;enumeration value="fusion"/&gt;
12082:             *          &lt;enumeration value="initiation"/&gt;
12083:             *      &lt;/restriction&gt;
12084:             *  &lt;/simpleType&gt;
12085:             *
12086:             *    </code>
12087:             *   </pre>
12088:             * </p>
12089:             *
12090:             * @generated
12091:             */
12092:            public static final AttributeType SUCCESSIONTYPE_TYPE = AttributeTypeFactory
12093:                    .newAttributeType("SuccessionType", java.lang.Object.class);
12094:
12095:            /**
12096:             * <p>
12097:             *  <pre>
12098:             *   <code>
12099:             *  &lt;complexType name="MultiPolygonPropertyType"&gt;
12100:             *      &lt;annotation&gt;
12101:             *          &lt;documentation&gt;This type is deprecated with GML 3 and shall not be used. It is included for backwards compatibility with GML 2. Use MultiSurfacePropertyType instead.
12102:             *
12103:             *  A property that has a collection of polygons as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none.&lt;/documentation&gt;
12104:             *      &lt;/annotation&gt;
12105:             *      &lt;sequence minOccurs="0"&gt;
12106:             *          &lt;element ref="gml:MultiPolygon"/&gt;
12107:             *      &lt;/sequence&gt;
12108:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"&gt;
12109:             *          &lt;annotation&gt;
12110:             *              &lt;documentation&gt;This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties.
12111:             *  A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup.&lt;/documentation&gt;
12112:             *          &lt;/annotation&gt;
12113:             *      &lt;/attributeGroup&gt;
12114:             *  &lt;/complexType&gt;
12115:             *
12116:             *    </code>
12117:             *   </pre>
12118:             * </p>
12119:             *
12120:             * @generated
12121:             */
12122:            public static final AttributeType MULTIPOLYGONPROPERTYTYPE_TYPE = AttributeTypeFactory
12123:                    .newAttributeType("MultiPolygonPropertyType",
12124:                            MultiPolygon.class);
12125:
12126:            /**
12127:             * <p>
12128:             *  <pre>
12129:             *   <code>
12130:             *  &lt;complexType name="VerticalDatumType"&gt;
12131:             *      &lt;annotation&gt;
12132:             *          &lt;documentation&gt;A textual description and/or a set of parameters identifying a particular reference level surface used as a zero-height surface, including its position with respect to the Earth for any of the height types recognized by this standard. There are several types of Vertical Datums, and each may place constraints on the Coordinate Axis with which it is combined to create a Vertical CRS. &lt;/documentation&gt;
12133:             *      &lt;/annotation&gt;
12134:             *      &lt;complexContent&gt;
12135:             *          &lt;extension base="gml:AbstractDatumType"&gt;
12136:             *              &lt;sequence&gt;
12137:             *                  &lt;element minOccurs="0" ref="gml:verticalDatumType"/&gt;
12138:             *              &lt;/sequence&gt;
12139:             *          &lt;/extension&gt;
12140:             *      &lt;/complexContent&gt;
12141:             *  &lt;/complexType&gt;
12142:             *
12143:             *    </code>
12144:             *   </pre>
12145:             * </p>
12146:             *
12147:             * @generated
12148:             */
12149:            public static final AttributeType VERTICALDATUMTYPE_TYPE = AttributeTypeFactory
12150:                    .newAttributeType("VerticalDatumType",
12151:                            java.lang.Object.class);
12152:
12153:            /**
12154:             * <p>
12155:             *  <pre>
12156:             *   <code>
12157:             *  &lt;complexType name="CompositeSolidPropertyType"&gt;
12158:             *      &lt;sequence minOccurs="0"&gt;
12159:             *          &lt;element ref="gml:CompositeSolid"/&gt;
12160:             *      &lt;/sequence&gt;
12161:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
12162:             *  &lt;/complexType&gt;
12163:             *
12164:             *    </code>
12165:             *   </pre>
12166:             * </p>
12167:             *
12168:             * @generated
12169:             */
12170:            public static final AttributeType COMPOSITESOLIDPROPERTYTYPE_TYPE = AttributeTypeFactory
12171:                    .newAttributeType("CompositeSolidPropertyType",
12172:                            java.lang.Object.class);
12173:
12174:            /**
12175:             * <p>
12176:             *  <pre>
12177:             *   <code>
12178:             *  &lt;complexType name="PixelInCellType"&gt;
12179:             *      &lt;annotation&gt;
12180:             *          &lt;documentation&gt;Specification of the way an image grid is associated with the image data attributes. &lt;/documentation&gt;
12181:             *      &lt;/annotation&gt;
12182:             *      &lt;simpleContent&gt;
12183:             *          &lt;restriction base="gml:CodeType"&gt;
12184:             *              &lt;attribute name="codeSpace" type="anyURI" use="required"&gt;
12185:             *                  &lt;annotation&gt;
12186:             *                      &lt;documentation&gt;Reference to a source of information specifying the values and meanings of all the allowed string values for this PixelInCellType. &lt;/documentation&gt;
12187:             *                  &lt;/annotation&gt;
12188:             *              &lt;/attribute&gt;
12189:             *          &lt;/restriction&gt;
12190:             *      &lt;/simpleContent&gt;
12191:             *  &lt;/complexType&gt;
12192:             *
12193:             *    </code>
12194:             *   </pre>
12195:             * </p>
12196:             *
12197:             * @generated
12198:             */
12199:            public static final AttributeType PIXELINCELLTYPE_TYPE = AttributeTypeFactory
12200:                    .newAttributeType("PixelInCellType", java.lang.Object.class);
12201:
12202:            /**
12203:             * <p>
12204:             *  <pre>
12205:             *   <code>
12206:             *  &lt;complexType name="SurfaceType"&gt;
12207:             *      &lt;annotation&gt;
12208:             *          &lt;documentation&gt;A Surface is a 2-dimensional primitive and is composed of one or more surface patches. The surface patches are connected to one another.
12209:             *                                  The orientation of the surface is positive ("up"). The orientation of a surface chooses an "up" direction through the choice of the upward normal, which, if the surface is not a cycle, is the side of the surface from which the exterior boundary appears counterclockwise. Reversal of the surface orientation reverses the curve orientation of each boundary component, and interchanges the conceptual "up" and "down" direction of the surface. If the surface is the boundary of a solid, the "up" direction is usually outward. For closed surfaces, which have no boundary, the up direction is that of the surface patches, which must be consistent with one another. Its included surface patches describe the interior structure of the Surface.&lt;/documentation&gt;
12210:             *      &lt;/annotation&gt;
12211:             *      &lt;complexContent&gt;
12212:             *          &lt;extension base="gml:AbstractSurfaceType"&gt;
12213:             *              &lt;sequence&gt;
12214:             *                  &lt;element ref="gml:patches"&gt;
12215:             *                      &lt;annotation&gt;
12216:             *                          &lt;documentation&gt;This element encapsulates the patches of the surface.&lt;/documentation&gt;
12217:             *                      &lt;/annotation&gt;
12218:             *                  &lt;/element&gt;
12219:             *              &lt;/sequence&gt;
12220:             *          &lt;/extension&gt;
12221:             *      &lt;/complexContent&gt;
12222:             *  &lt;/complexType&gt;
12223:             *
12224:             *    </code>
12225:             *   </pre>
12226:             * </p>
12227:             *
12228:             * @generated
12229:             */
12230:            public static final AttributeType SURFACETYPE_TYPE = AttributeTypeFactory
12231:                    .newAttributeType("SurfaceType", Polygon.class);
12232:
12233:            /**
12234:             * <p>
12235:             *  <pre>
12236:             *   <code>
12237:             *  &lt;complexType name="LengthType"&gt;
12238:             *      &lt;annotation&gt;
12239:             *          &lt;documentation&gt;Value of a length (or distance) quantity, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a length, such as metres or feet.&lt;/documentation&gt;
12240:             *      &lt;/annotation&gt;
12241:             *      &lt;simpleContent&gt;
12242:             *          &lt;restriction base="gml:MeasureType"/&gt;
12243:             *      &lt;/simpleContent&gt;
12244:             *  &lt;/complexType&gt;
12245:             *
12246:             *    </code>
12247:             *   </pre>
12248:             * </p>
12249:             *
12250:             * @generated
12251:             */
12252:            public static final AttributeType LENGTHTYPE_TYPE = AttributeTypeFactory
12253:                    .newAttributeType("LengthType", java.lang.Object.class);
12254:
12255:            /**
12256:             * <p>
12257:             *  <pre>
12258:             *   <code>
12259:             *  &lt;complexType name="MetaDataPropertyType"&gt;
12260:             *      &lt;annotation&gt;
12261:             *          &lt;documentation&gt;Base type for complex metadata property types.&lt;/documentation&gt;
12262:             *      &lt;/annotation&gt;
12263:             *      &lt;sequence minOccurs="0"&gt;
12264:             *          &lt;any processContents="lax"/&gt;
12265:             *          &lt;!-- &lt;element ref="gml:_MetaData"/&gt; --&gt;
12266:             *      &lt;/sequence&gt;
12267:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
12268:             *      &lt;attribute name="about" type="anyURI" use="optional"/&gt;
12269:             *  &lt;/complexType&gt;
12270:             *
12271:             *    </code>
12272:             *   </pre>
12273:             * </p>
12274:             *
12275:             * @generated
12276:             */
12277:            public static final AttributeType METADATAPROPERTYTYPE_TYPE = AttributeTypeFactory
12278:                    .newAttributeType("MetaDataPropertyType",
12279:                            java.lang.Object.class);
12280:
12281:            /**
12282:             * <p>
12283:             *  <pre>
12284:             *   <code>
12285:             *  &lt;complexType name="QuantityExtentType"&gt;
12286:             *      &lt;annotation&gt;
12287:             *          &lt;documentation&gt;Restriction of list type to store a 2-point range of numeric values. If one member is a null, then this is a single ended interval.&lt;/documentation&gt;
12288:             *      &lt;/annotation&gt;
12289:             *      &lt;simpleContent&gt;
12290:             *          &lt;restriction base="gml:MeasureOrNullListType"&gt;
12291:             *              &lt;length value="2"/&gt;
12292:             *          &lt;/restriction&gt;
12293:             *      &lt;/simpleContent&gt;
12294:             *  &lt;/complexType&gt;
12295:             *
12296:             *    </code>
12297:             *   </pre>
12298:             * </p>
12299:             *
12300:             * @generated
12301:             */
12302:            public static final AttributeType QUANTITYEXTENTTYPE_TYPE = AttributeTypeFactory
12303:                    .newAttributeType("QuantityExtentType",
12304:                            java.lang.Object.class);
12305:
12306:            /**
12307:             * <p>
12308:             *  <pre>
12309:             *   <code>
12310:             *  &lt;complexType name="GeographicCRSRefType"&gt;
12311:             *      &lt;annotation&gt;
12312:             *          &lt;documentation&gt;Association to a geographic coordinate reference system, either referencing or containing the definition of that reference system. &lt;/documentation&gt;
12313:             *      &lt;/annotation&gt;
12314:             *      &lt;sequence minOccurs="0"&gt;
12315:             *          &lt;element ref="gml:GeographicCRS"/&gt;
12316:             *      &lt;/sequence&gt;
12317:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
12318:             *  &lt;/complexType&gt;
12319:             *
12320:             *    </code>
12321:             *   </pre>
12322:             * </p>
12323:             *
12324:             * @generated
12325:             */
12326:            public static final AttributeType GEOGRAPHICCRSREFTYPE_TYPE = AttributeTypeFactory
12327:                    .newAttributeType("GeographicCRSRefType",
12328:                            java.lang.Object.class);
12329:
12330:            /**
12331:             * <p>
12332:             *  <pre>
12333:             *   <code>
12334:             *  &lt;complexType name="TimeTopologyPrimitivePropertyType"&gt;
12335:             *      &lt;annotation&gt;
12336:             *          &lt;documentation&gt;A time topology primitive property can either hold any time topology complex element
12337:             *                           eor carry an XLink reference to a remote time topology complex element
12338:             *                           (where remote includes elements located elsewhere in the same document).
12339:             *                           Note that either the reference or the contained element must be given, but not both or none.&lt;/documentation&gt;
12340:             *      &lt;/annotation&gt;
12341:             *      &lt;sequence minOccurs="0"&gt;
12342:             *          &lt;element ref="gml:_TimeTopologyPrimitive"/&gt;
12343:             *      &lt;/sequence&gt;
12344:             *      &lt;attributeGroup ref="gml:AssociationAttributeGroup"/&gt;
12345:             *  &lt;/complexType&gt;
12346:             *
12347:             *    </code>
12348:             *   </pre>
12349:             * </p>
12350:             *
12351:             * @generated
12352:             */
12353:            public static final AttributeType TIMETOPOLOGYPRIMITIVEPROPERTYTYPE_TYPE = AttributeTypeFactory
12354:                    .newAttributeType("TimeTopologyPrimitivePropertyType",
12355:                            java.lang.Object.class);
12356:
12357:            /**
12358:             * <p>
12359:             *  <pre>
12360:             *   <code>
12361:             *  &lt;complexType name="TimeNodeType"&gt;
12362:             *      &lt;annotation&gt;
12363:             *          &lt;documentation xml:lang="en"&gt;Type declaration of the element "TimeNode".&lt;/documentation&gt;
12364:             *      &lt;/annotation&gt;
12365:             *      &lt;complexContent&gt;
12366:             *          &lt;extension base="gml:AbstractTimeTopologyPrimitiveType"&gt;
12367:             *              &lt;sequence&gt;
12368:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
12369:             *                      name="previousEdge" type="gml:TimeEdgePropertyType"/&gt;
12370:             *                  &lt;element maxOccurs="unbounded" minOccurs="0"
12371:             *                      name="nextEdge" type="gml:TimeEdgePropertyType"/&gt;
12372:             *                  &lt;element minOccurs="0" name="position" type="gml:TimeInstantPropertyType"/&gt;
12373:             *              &lt;/sequence&gt;
12374:             *          &lt;/extension&gt;
12375:             *      &lt;/complexContent&gt;
12376:             *  &lt;/complexType&gt;
12377:             *
12378:             *    </code>
12379:             *   </pre>
12380:             * </p>
12381:             *
12382:             * @generated
12383:             */
12384:            public static final AttributeType TIMENODETYPE_TYPE = AttributeTypeFactory
12385:                    .newAttributeType("TimeNodeType", java.lang.Object.class);
12386:
12387:            public GMLSchema() {
12388:                super ("http://www.opengis.net/gml");
12389:
12390:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12391:                        "TopoSurfaceType"), TOPOSURFACETYPE_TYPE);
12392:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12393:                        "VolumeType"), VOLUMETYPE_TYPE);
12394:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12395:                        "AbstractSolidType"), ABSTRACTSOLIDTYPE_TYPE);
12396:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12397:                        "EllipsoidalCSType"), ELLIPSOIDALCSTYPE_TYPE);
12398:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12399:                        "PolarCSRefType"), POLARCSREFTYPE_TYPE);
12400:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12401:                        "NameOrNull"), NAMEORNULL_TYPE);
12402:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12403:                        "CompositeCurveType"), COMPOSITECURVETYPE_TYPE);
12404:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12405:                        "GridLengthType"), GRIDLENGTHTYPE_TYPE);
12406:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12407:                        "MultiSolidCoverageType"), MULTISOLIDCOVERAGETYPE_TYPE);
12408:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12409:                        "MultiGeometryType"), MULTIGEOMETRYTYPE_TYPE);
12410:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12411:                        "AbstractRingPropertyType"),
12412:                        ABSTRACTRINGPROPERTYTYPE_TYPE);
12413:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12414:                        "FormulaType"), FORMULATYPE_TYPE);
12415:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12416:                        "SymbolType"), SYMBOLTYPE_TYPE);
12417:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12418:                        "EllipsoidalCSRefType"), ELLIPSOIDALCSREFTYPE_TYPE);
12419:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12420:                        "PointType"), POINTTYPE_TYPE);
12421:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12422:                        "MultiCurveCoverageType"), MULTICURVECOVERAGETYPE_TYPE);
12423:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12424:                        "VerticalCSRefType"), VERTICALCSREFTYPE_TYPE);
12425:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12426:                        "RingPropertyType"), RINGPROPERTYTYPE_TYPE);
12427:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12428:                        "GeodeticDatumRefType"), GEODETICDATUMREFTYPE_TYPE);
12429:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12430:                        "CompositeSurfaceType"), COMPOSITESURFACETYPE_TYPE);
12431:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12432:                        "ValuePropertyType"), VALUEPROPERTYTYPE_TYPE);
12433:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12434:                        "GeneralConversionRefType"),
12435:                        GENERALCONVERSIONREFTYPE_TYPE);
12436:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12437:                        "BaseUnitType"), BASEUNITTYPE_TYPE);
12438:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12439:                        "AbstractGeneralConversionType"),
12440:                        ABSTRACTGENERALCONVERSIONTYPE_TYPE);
12441:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12442:                        "TimeIndeterminateValueType"),
12443:                        TIMEINDETERMINATEVALUETYPE_TYPE);
12444:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12445:                        "QueryGrammarEnumeration"),
12446:                        QUERYGRAMMARENUMERATION_TYPE);
12447:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12448:                        "LineTypeType"), LINETYPETYPE_TYPE);
12449:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12450:                        "DerivedCRSType"), DERIVEDCRSTYPE_TYPE);
12451:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12452:                        "AbstractDatumType"), ABSTRACTDATUMTYPE_TYPE);
12453:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12454:                        "integerList"), INTEGERLIST_TYPE);
12455:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12456:                        "DirectedObservationType"),
12457:                        DIRECTEDOBSERVATIONTYPE_TYPE);
12458:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12459:                        "TimeCalendarType"), TIMECALENDARTYPE_TYPE);
12460:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12461:                        "IsolatedPropertyType"), ISOLATEDPROPERTYTYPE_TYPE);
12462:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12463:                        "GridLimitsType"), GRIDLIMITSTYPE_TYPE);
12464:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12465:                        "CompositeSolidType"), COMPOSITESOLIDTYPE_TYPE);
12466:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12467:                        "OperationParameterRefType"),
12468:                        OPERATIONPARAMETERREFTYPE_TYPE);
12469:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12470:                        "SecondDefiningParameterType"),
12471:                        SECONDDEFININGPARAMETERTYPE_TYPE);
12472:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12473:                        "OrientableSurfaceType"), ORIENTABLESURFACETYPE_TYPE);
12474:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12475:                        "CategoryPropertyType"), CATEGORYPROPERTYTYPE_TYPE);
12476:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12477:                        "EngineeringCRSRefType"), ENGINEERINGCRSREFTYPE_TYPE);
12478:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12479:                        "ConeType"), CONETYPE_TYPE);
12480:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12481:                        "ReferenceType"), REFERENCETYPE_TYPE);
12482:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12483:                        "OperationParameterGroupRefType"),
12484:                        OPERATIONPARAMETERGROUPREFTYPE_TYPE);
12485:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12486:                        "TimeNodePropertyType"), TIMENODEPROPERTYTYPE_TYPE);
12487:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12488:                        "AbstractGeneralOperationParameterRefType"),
12489:                        ABSTRACTGENERALOPERATIONPARAMETERREFTYPE_TYPE);
12490:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12491:                        "CoordinateSystemAxisRefType"),
12492:                        COORDINATESYSTEMAXISREFTYPE_TYPE);
12493:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12494:                        "CountPropertyType"), COUNTPROPERTYTYPE_TYPE);
12495:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12496:                        "MeasureOrNullListType"), MEASUREORNULLLISTTYPE_TYPE);
12497:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12498:                        "PrimeMeridianBaseType"), PRIMEMERIDIANBASETYPE_TYPE);
12499:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12500:                        "GeocentricCRSType"), GEOCENTRICCRSTYPE_TYPE);
12501:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12502:                        "ConventionalUnitType"), CONVENTIONALUNITTYPE_TYPE);
12503:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12504:                        "UserDefinedCSRefType"), USERDEFINEDCSREFTYPE_TYPE);
12505:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12506:                        "booleanOrNull"), BOOLEANORNULL_TYPE);
12507:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12508:                        "TopoPointPropertyType"), TOPOPOINTPROPERTYTYPE_TYPE);
12509:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12510:                        "LineStringSegmentArrayPropertyType"),
12511:                        LINESTRINGSEGMENTARRAYPROPERTYTYPE_TYPE);
12512:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12513:                        "AbstractSurfaceType"), ABSTRACTSURFACETYPE_TYPE);
12514:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12515:                        "MultiLineStringType"), MULTILINESTRINGTYPE_TYPE);
12516:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12517:                        "PrimeMeridianRefType"), PRIMEMERIDIANREFTYPE_TYPE);
12518:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12519:                        "TopoComplexMemberType"), TOPOCOMPLEXMEMBERTYPE_TYPE);
12520:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12521:                        "PassThroughOperationRefType"),
12522:                        PASSTHROUGHOPERATIONREFTYPE_TYPE);
12523:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12524:                        "TopoSurfacePropertyType"),
12525:                        TOPOSURFACEPROPERTYTYPE_TYPE);
12526:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12527:                        "CoordinatesType"), COORDINATESTYPE_TYPE);
12528:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12529:                        "NullEnumeration"), NULLENUMERATION_TYPE);
12530:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12531:                        "TimeCoordinateSystemType"),
12532:                        TIMECOORDINATESYSTEMTYPE_TYPE);
12533:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12534:                        "DefinitionProxyType"), DEFINITIONPROXYTYPE_TYPE);
12535:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12536:                        "TimeCalendarPropertyType"),
12537:                        TIMECALENDARPROPERTYTYPE_TYPE);
12538:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12539:                        "PassThroughOperationType"),
12540:                        PASSTHROUGHOPERATIONTYPE_TYPE);
12541:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12542:                        "TopoPrimitiveMemberType"),
12543:                        TOPOPRIMITIVEMEMBERTYPE_TYPE);
12544:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12545:                        "ConcatenatedOperationRefType"),
12546:                        CONCATENATEDOPERATIONREFTYPE_TYPE);
12547:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12548:                        "KnotPropertyType"), KNOTPROPERTYTYPE_TYPE);
12549:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12550:                        "ImageDatumRefType"), IMAGEDATUMREFTYPE_TYPE);
12551:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12552:                        "AbstractSurfacePatchType"),
12553:                        ABSTRACTSURFACEPATCHTYPE_TYPE);
12554:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12555:                        "DegreeValueType"), DEGREEVALUETYPE_TYPE);
12556:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12557:                        "GenericMetaDataType"), GENERICMETADATATYPE_TYPE);
12558:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12559:                        "GeodesicType"), GEODESICTYPE_TYPE);
12560:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12561:                        "ScaleType"), SCALETYPE_TYPE);
12562:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12563:                        "TimeOrdinalReferenceSystemType"),
12564:                        TIMEORDINALREFERENCESYSTEMTYPE_TYPE);
12565:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12566:                        "AbstractGeneralDerivedCRSType"),
12567:                        ABSTRACTGENERALDERIVEDCRSTYPE_TYPE);
12568:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12569:                        "AbstractContinuousCoverageType"),
12570:                        ABSTRACTCONTINUOUSCOVERAGETYPE_TYPE);
12571:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12572:                        "CompoundCRSRefType"), COMPOUNDCRSREFTYPE_TYPE);
12573:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12574:                        "TimeClockType"), TIMECLOCKTYPE_TYPE);
12575:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12576:                        "NameOrNullList"), NAMEORNULLLIST_TYPE);
12577:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12578:                        "MultiSurfaceCoverageType"),
12579:                        MULTISURFACECOVERAGETYPE_TYPE);
12580:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12581:                        "TopologyStyleType"), TOPOLOGYSTYLETYPE_TYPE);
12582:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12583:                        "LinearRingPropertyType"), LINEARRINGPROPERTYTYPE_TYPE);
12584:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12585:                        "AbsoluteExternalPositionalAccuracyType"),
12586:                        ABSOLUTEEXTERNALPOSITIONALACCURACYTYPE_TYPE);
12587:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12588:                        "DMSAngleType"), DMSANGLETYPE_TYPE);
12589:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12590:                        "TopoCurvePropertyType"), TOPOCURVEPROPERTYTYPE_TYPE);
12591:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12592:                        "GraphTypeType"), GRAPHTYPETYPE_TYPE);
12593:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12594:                        "OperationRefType"), OPERATIONREFTYPE_TYPE);
12595:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12596:                        "FaceType"), FACETYPE_TYPE);
12597:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12598:                        "stringOrNull"), STRINGORNULL_TYPE);
12599:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12600:                        "ObliqueCartesianCSType"), OBLIQUECARTESIANCSTYPE_TYPE);
12601:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12602:                        "StyleVariationType"), STYLEVARIATIONTYPE_TYPE);
12603:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12604:                        "PolygonPatchArrayPropertyType"),
12605:                        POLYGONPATCHARRAYPROPERTYTYPE_TYPE);
12606:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12607:                        "UnitOfMeasureType"), UNITOFMEASURETYPE_TYPE);
12608:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12609:                        "RectifiedGridCoverageType"),
12610:                        RECTIFIEDGRIDCOVERAGETYPE_TYPE);
12611:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12612:                        "ConversionType"), CONVERSIONTYPE_TYPE);
12613:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12614:                        "CRSRefType"), CRSREFTYPE_TYPE);
12615:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12616:                        "integerOrNullList"), INTEGERORNULLLIST_TYPE);
12617:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12618:                        "CartesianCSRefType"), CARTESIANCSREFTYPE_TYPE);
12619:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12620:                        "CoordinateReferenceSystemRefType"),
12621:                        COORDINATEREFERENCESYSTEMREFTYPE_TYPE);
12622:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12623:                        "CompositeSurfacePropertyType"),
12624:                        COMPOSITESURFACEPROPERTYTYPE_TYPE);
12625:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12626:                        "CovarianceElementType"), COVARIANCEELEMENTTYPE_TYPE);
12627:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12628:                        "MultiSolidDomainType"), MULTISOLIDDOMAINTYPE_TYPE);
12629:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12630:                        "CylindricalCSRefType"), CYLINDRICALCSREFTYPE_TYPE);
12631:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12632:                        "OperationParameterType"), OPERATIONPARAMETERTYPE_TYPE);
12633:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12634:                        "TrianglePatchArrayPropertyType"),
12635:                        TRIANGLEPATCHARRAYPROPERTYTYPE_TYPE);
12636:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12637:                        "CodeListType"), CODELISTTYPE_TYPE);
12638:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12639:                        "CompositeCurvePropertyType"),
12640:                        COMPOSITECURVEPROPERTYTYPE_TYPE);
12641:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12642:                        "TimeEdgeType"), TIMEEDGETYPE_TYPE);
12643:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12644:                        "DirectPositionListType"), DIRECTPOSITIONLISTTYPE_TYPE);
12645:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12646:                        "DynamicFeatureCollectionType"),
12647:                        DYNAMICFEATURECOLLECTIONTYPE_TYPE);
12648:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12649:                        "TemporalCSType"), TEMPORALCSTYPE_TYPE);
12650:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12651:                        "CurveSegmentArrayPropertyType"),
12652:                        CURVESEGMENTARRAYPROPERTYTYPE_TYPE);
12653:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12654:                        "IdentifierType"), IDENTIFIERTYPE_TYPE);
12655:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12656:                        "CompoundCRSType"), COMPOUNDCRSTYPE_TYPE);
12657:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12658:                        "IncrementOrder"), INCREMENTORDER_TYPE);
12659:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12660:                        "TopologyStylePropertyType"),
12661:                        TOPOLOGYSTYLEPROPERTYTYPE_TYPE);
12662:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12663:                        "ReferenceSystemRefType"), REFERENCESYSTEMREFTYPE_TYPE);
12664:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12665:                        "DirectedTopoSolidPropertyType"),
12666:                        DIRECTEDTOPOSOLIDPROPERTYTYPE_TYPE);
12667:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12668:                        "AbstractDatumBaseType"), ABSTRACTDATUMBASETYPE_TYPE);
12669:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12670:                        "VerticalCSType"), VERTICALCSTYPE_TYPE);
12671:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12672:                        "DatumRefType"), DATUMREFTYPE_TYPE);
12673:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12674:                        "AbstractMetaDataType"), ABSTRACTMETADATATYPE_TYPE);
12675:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12676:                        "AreaType"), AREATYPE_TYPE);
12677:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12678:                        "MultiPointCoverageType"), MULTIPOINTCOVERAGETYPE_TYPE);
12679:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12680:                        "MeasureListType"), MEASURELISTTYPE_TYPE);
12681:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12682:                        "AbstractCoordinateOperationType"),
12683:                        ABSTRACTCOORDINATEOPERATIONTYPE_TYPE);
12684:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12685:                        "KnotTypesType"), KNOTTYPESTYPE_TYPE);
12686:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12687:                        "TimeCalendarEraType"), TIMECALENDARERATYPE_TYPE);
12688:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12689:                        "AngleChoiceType"), ANGLECHOICETYPE_TYPE);
12690:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12691:                        "DefinitionType"), DEFINITIONTYPE_TYPE);
12692:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12693:                        "BaseStyleDescriptorType"),
12694:                        BASESTYLEDESCRIPTORTYPE_TYPE);
12695:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12696:                        "TemporalDatumBaseType"), TEMPORALDATUMBASETYPE_TYPE);
12697:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12698:                        "NullType"), NULLTYPE_TYPE);
12699:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12700:                        "AesheticCriteriaType"), AESHETICCRITERIATYPE_TYPE);
12701:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12702:                        "MultiCurveType"), MULTICURVETYPE_TYPE);
12703:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12704:                        "StyleType"), STYLETYPE_TYPE);
12705:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12706:                        "DerivationUnitTermType"), DERIVATIONUNITTERMTYPE_TYPE);
12707:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12708:                        "TimeOrdinalEraPropertyType"),
12709:                        TIMEORDINALERAPROPERTYTYPE_TYPE);
12710:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12711:                        "TopoVolumeType"), TOPOVOLUMETYPE_TYPE);
12712:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12713:                        "AbstractPositionalAccuracyType"),
12714:                        ABSTRACTPOSITIONALACCURACYTYPE_TYPE);
12715:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12716:                        "TriangleType"), TRIANGLETYPE_TYPE);
12717:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12718:                        "TemporalDatumRefType"), TEMPORALDATUMREFTYPE_TYPE);
12719:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12720:                        "DirectedEdgePropertyType"),
12721:                        DIRECTEDEDGEPROPERTYTYPE_TYPE);
12722:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12723:                        "VerticalDatumTypeType"), VERTICALDATUMTYPETYPE_TYPE);
12724:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12725:                        "ImageDatumType"), IMAGEDATUMTYPE_TYPE);
12726:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12727:                        "FeatureCollectionType"), FEATURECOLLECTIONTYPE_TYPE);
12728:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12729:                        "DerivedCRSRefType"), DERIVEDCRSREFTYPE_TYPE);
12730:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12731:                        "EnvelopeType"), ENVELOPETYPE_TYPE);
12732:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12733:                        "IndexMapType"), INDEXMAPTYPE_TYPE);
12734:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12735:                        "SequenceRuleType"), SEQUENCERULETYPE_TYPE);
12736:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12737:                        "ProjectedCRSRefType"), PROJECTEDCRSREFTYPE_TYPE);
12738:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12739:                        "RelativeInternalPositionalAccuracyType"),
12740:                        RELATIVEINTERNALPOSITIONALACCURACYTYPE_TYPE);
12741:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12742:                        "DerivedCRSTypeType"), DERIVEDCRSTYPETYPE_TYPE);
12743:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12744:                        "AbstractReferenceSystemType"),
12745:                        ABSTRACTREFERENCESYSTEMTYPE_TYPE);
12746:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12747:                        "ObservationType"), OBSERVATIONTYPE_TYPE);
12748:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12749:                        "EllipsoidRefType"), ELLIPSOIDREFTYPE_TYPE);
12750:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12751:                        "TimeType"), TIMETYPE_TYPE);
12752:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12753:                        "DirectionVectorType"), DIRECTIONVECTORTYPE_TYPE);
12754:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12755:                        "FileType"), FILETYPE_TYPE);
12756:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12757:                        "CurveArrayPropertyType"), CURVEARRAYPROPERTYTYPE_TYPE);
12758:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12759:                        "FeatureStylePropertyType"),
12760:                        FEATURESTYLEPROPERTYTYPE_TYPE);
12761:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12762:                        "DirectedObservationAtDistanceType"),
12763:                        DIRECTEDOBSERVATIONATDISTANCETYPE_TYPE);
12764:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12765:                        "GridDomainType"), GRIDDOMAINTYPE_TYPE);
12766:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12767:                        "ArrayAssociationType"), ARRAYASSOCIATIONTYPE_TYPE);
12768:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12769:                        "RectangleType"), RECTANGLETYPE_TYPE);
12770:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12771:                        "TimeClockPropertyType"), TIMECLOCKPROPERTYTYPE_TYPE);
12772:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12773:                        "TimePeriodType"), TIMEPERIODTYPE_TYPE);
12774:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12775:                        "MultiCurvePropertyType"), MULTICURVEPROPERTYTYPE_TYPE);
12776:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12777:                        "DerivedUnitType"), DERIVEDUNITTYPE_TYPE);
12778:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12779:                        "ConversionRefType"), CONVERSIONREFTYPE_TYPE);
12780:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12781:                        "ClothoidType"), CLOTHOIDTYPE_TYPE);
12782:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12783:                        "TargetPropertyType"), TARGETPROPERTYTYPE_TYPE);
12784:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12785:                        "AbstractCoordinateOperationBaseType"),
12786:                        ABSTRACTCOORDINATEOPERATIONBASETYPE_TYPE);
12787:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12788:                        "MultiLineStringPropertyType"),
12789:                        MULTILINESTRINGPROPERTYTYPE_TYPE);
12790:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12791:                        "TimeEdgePropertyType"), TIMEEDGEPROPERTYTYPE_TYPE);
12792:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12793:                        "ValueArrayPropertyType"), VALUEARRAYPROPERTYTYPE_TYPE);
12794:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12795:                        "RangeParametersType"), RANGEPARAMETERSTYPE_TYPE);
12796:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12797:                        "doubleOrNullList"), DOUBLEORNULLLIST_TYPE);
12798:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12799:                        "SignType"), SIGNTYPE_TYPE);
12800:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12801:                        "ValueArrayType"), VALUEARRAYTYPE_TYPE);
12802:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12803:                        "TimeInstantPropertyType"),
12804:                        TIMEINSTANTPROPERTYTYPE_TYPE);
12805:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12806:                        "AbstractDiscreteCoverageType"),
12807:                        ABSTRACTDISCRETECOVERAGETYPE_TYPE);
12808:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12809:                        "AbstractGeneralTransformationType"),
12810:                        ABSTRACTGENERALTRANSFORMATIONTYPE_TYPE);
12811:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12812:                        "TopoCurveType"), TOPOCURVETYPE_TYPE);
12813:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12814:                        "OrientableCurveType"), ORIENTABLECURVETYPE_TYPE);
12815:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12816:                        "LineStringPropertyType"), LINESTRINGPROPERTYTYPE_TYPE);
12817:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12818:                        "PolarCSType"), POLARCSTYPE_TYPE);
12819:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12820:                        "AffinePlacementType"), AFFINEPLACEMENTTYPE_TYPE);
12821:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12822:                        "CategoryExtentType"), CATEGORYEXTENTTYPE_TYPE);
12823:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12824:                        "EngineeringDatumRefType"),
12825:                        ENGINEERINGDATUMREFTYPE_TYPE);
12826:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12827:                        "TimePeriodPropertyType"), TIMEPERIODPROPERTYTYPE_TYPE);
12828:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12829:                        "ConcatenatedOperationType"),
12830:                        CONCATENATEDOPERATIONTYPE_TYPE);
12831:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12832:                        "AbstractCurveType"), ABSTRACTCURVETYPE_TYPE);
12833:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12834:                        "GeodesicStringType"), GEODESICSTRINGTYPE_TYPE);
12835:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12836:                        "SphericalCSType"), SPHERICALCSTYPE_TYPE);
12837:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12838:                        "AbstractGeometricPrimitiveType"),
12839:                        ABSTRACTGEOMETRICPRIMITIVETYPE_TYPE);
12840:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12841:                        "AbstractTimePrimitiveType"),
12842:                        ABSTRACTTIMEPRIMITIVETYPE_TYPE);
12843:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12844:                        "GeometricComplexType"), GEOMETRICCOMPLEXTYPE_TYPE);
12845:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12846:                        "PolygonType"), POLYGONTYPE_TYPE);
12847:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12848:                        "EllipsoidBaseType"), ELLIPSOIDBASETYPE_TYPE);
12849:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12850:                        "ScalarValuePropertyType"),
12851:                        SCALARVALUEPROPERTYTYPE_TYPE);
12852:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12853:                        "AbstractFeatureCollectionType"),
12854:                        ABSTRACTFEATURECOLLECTIONTYPE_TYPE);
12855:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12856:                        "GeometryPropertyType"), GEOMETRYPROPERTYTYPE_TYPE);
12857:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12858:                        "EngineeringCRSType"), ENGINEERINGCRSTYPE_TYPE);
12859:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12860:                        "DirectedNodePropertyType"),
12861:                        DIRECTEDNODEPROPERTYTYPE_TYPE);
12862:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12863:                        "LinearCSRefType"), LINEARCSREFTYPE_TYPE);
12864:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12865:                        "TemporalCRSType"), TEMPORALCRSTYPE_TYPE);
12866:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12867:                        "DirectedFacePropertyType"),
12868:                        DIRECTEDFACEPROPERTYTYPE_TYPE);
12869:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12870:                        "RectifiedGridType"), RECTIFIEDGRIDTYPE_TYPE);
12871:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12872:                        "EnvelopeWithTimePeriodType"),
12873:                        ENVELOPEWITHTIMEPERIODTYPE_TYPE);
12874:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12875:                        "PrimeMeridianType"), PRIMEMERIDIANTYPE_TYPE);
12876:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12877:                        "SolidPropertyType"), SOLIDPROPERTYTYPE_TYPE);
12878:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12879:                        "GridEnvelopeType"), GRIDENVELOPETYPE_TYPE);
12880:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12881:                        "CoordinateSystemAxisBaseType"),
12882:                        COORDINATESYSTEMAXISBASETYPE_TYPE);
12883:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12884:                        "GraphStyleType"), GRAPHSTYLETYPE_TYPE);
12885:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12886:                        "BooleanPropertyType"), BOOLEANPROPERTYTYPE_TYPE);
12887:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12888:                        "CylinderType"), CYLINDERTYPE_TYPE);
12889:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12890:                        "DecimalMinutesType"), DECIMALMINUTESTYPE_TYPE);
12891:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12892:                        "FeatureArrayPropertyType"),
12893:                        FEATUREARRAYPROPERTYTYPE_TYPE);
12894:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12895:                        "FeatureStyleType"), FEATURESTYLETYPE_TYPE);
12896:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12897:                        "TemporalCRSRefType"), TEMPORALCRSREFTYPE_TYPE);
12898:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12899:                        "ArcStringByBulgeType"), ARCSTRINGBYBULGETYPE_TYPE);
12900:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12901:                        "AssociationType"), ASSOCIATIONTYPE_TYPE);
12902:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12903:                        "ArcSecondsType"), ARCSECONDSTYPE_TYPE);
12904:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12905:                        "VerticalCRSRefType"), VERTICALCRSREFTYPE_TYPE);
12906:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12907:                        "DegreesType"), DEGREESTYPE_TYPE);
12908:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12909:                        "PointArrayPropertyType"), POINTARRAYPROPERTYTYPE_TYPE);
12910:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12911:                        "LabelType"), LABELTYPE_TYPE);
12912:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12913:                        "OffsetCurveType"), OFFSETCURVETYPE_TYPE);
12914:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12915:                        "TopoPrimitiveArrayAssociationType"),
12916:                        TOPOPRIMITIVEARRAYASSOCIATIONTYPE_TYPE);
12917:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12918:                        "CubicSplineType"), CUBICSPLINETYPE_TYPE);
12919:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12920:                        "CoordType"), COORDTYPE_TYPE);
12921:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12922:                        "DirectPositionType"), DIRECTPOSITIONTYPE_TYPE);
12923:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12924:                        "GridCoverageType"), GRIDCOVERAGETYPE_TYPE);
12925:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12926:                        "ContainerPropertyType"), CONTAINERPROPERTYTYPE_TYPE);
12927:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12928:                        "AngleType"), ANGLETYPE_TYPE);
12929:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12930:                        "AbstractGeometricAggregateType"),
12931:                        ABSTRACTGEOMETRICAGGREGATETYPE_TYPE);
12932:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12933:                        "AbstractTimeGeometricPrimitiveType"),
12934:                        ABSTRACTTIMEGEOMETRICPRIMITIVETYPE_TYPE);
12935:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12936:                        "MovingObjectStatusType"), MOVINGOBJECTSTATUSTYPE_TYPE);
12937:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12938:                        "AbstractCoordinateSystemType"),
12939:                        ABSTRACTCOORDINATESYSTEMTYPE_TYPE);
12940:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12941:                        "TimePositionType"), TIMEPOSITIONTYPE_TYPE);
12942:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12943:                        "HistoryPropertyType"), HISTORYPROPERTYTYPE_TYPE);
12944:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12945:                        "MultiSurfaceType"), MULTISURFACETYPE_TYPE);
12946:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12947:                        "DomainSetType"), DOMAINSETTYPE_TYPE);
12948:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12949:                        "doubleOrNull"), DOUBLEORNULL_TYPE);
12950:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12951:                        "DictionaryEntryType"), DICTIONARYENTRYTYPE_TYPE);
12952:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12953:                        "CovarianceMatrixType"), COVARIANCEMATRIXTYPE_TYPE);
12954:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12955:                        "PolygonPropertyType"), POLYGONPROPERTYTYPE_TYPE);
12956:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12957:                        "LinearCSType"), LINEARCSTYPE_TYPE);
12958:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12959:                        "ImageCRSType"), IMAGECRSTYPE_TYPE);
12960:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12961:                        "IndirectEntryType"), INDIRECTENTRYTYPE_TYPE);
12962:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12963:                        "MultiSurfacePropertyType"),
12964:                        MULTISURFACEPROPERTYTYPE_TYPE);
12965:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12966:                        "ConversionToPreferredUnitType"),
12967:                        CONVERSIONTOPREFERREDUNITTYPE_TYPE);
12968:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12969:                        "MultiCurveDomainType"), MULTICURVEDOMAINTYPE_TYPE);
12970:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12971:                        "TopoPointType"), TOPOPOINTTYPE_TYPE);
12972:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12973:                        "AbstractTopologyType"), ABSTRACTTOPOLOGYTYPE_TYPE);
12974:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12975:                        "ArcByBulgeType"), ARCBYBULGETYPE_TYPE);
12976:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12977:                        "VerticalCRSType"), VERTICALCRSTYPE_TYPE);
12978:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12979:                        "ArcByCenterPointType"), ARCBYCENTERPOINTTYPE_TYPE);
12980:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12981:                        "FileValueModelType"), FILEVALUEMODELTYPE_TYPE);
12982:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12983:                        "ObliqueCartesianCSRefType"),
12984:                        OBLIQUECARTESIANCSREFTYPE_TYPE);
12985:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12986:                        "AbstractReferenceSystemBaseType"),
12987:                        ABSTRACTREFERENCESYSTEMBASETYPE_TYPE);
12988:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12989:                        "TimePrimitivePropertyType"),
12990:                        TIMEPRIMITIVEPROPERTYTYPE_TYPE);
12991:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12992:                        "AbstractCoverageType"), ABSTRACTCOVERAGETYPE_TYPE);
12993:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12994:                        "BoundedFeatureType"), BOUNDEDFEATURETYPE_TYPE);
12995:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12996:                        "AbstractCoordinateSystemBaseType"),
12997:                        ABSTRACTCOORDINATESYSTEMBASETYPE_TYPE);
12998:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
12999:                        "AbstractStyleType"), ABSTRACTSTYLETYPE_TYPE);
13000:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13001:                        "GeneralTransformationRefType"),
13002:                        GENERALTRANSFORMATIONREFTYPE_TYPE);
13003:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13004:                        "NCNameList"), NCNAMELIST_TYPE);
13005:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13006:                        "ProjectedCRSType"), PROJECTEDCRSTYPE_TYPE);
13007:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13008:                        "UnitDefinitionType"), UNITDEFINITIONTYPE_TYPE);
13009:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13010:                        "AbstractFeatureType"), ABSTRACTFEATURETYPE_TYPE);
13011:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13012:                        "ArcType"), ARCTYPE_TYPE);
13013:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13014:                        "integerOrNull"), INTEGERORNULL_TYPE);
13015:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13016:                        "GridFunctionType"), GRIDFUNCTIONTYPE_TYPE);
13017:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13018:                        "SymbolTypeEnumeration"), SYMBOLTYPEENUMERATION_TYPE);
13019:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13020:                        "SurfacePatchArrayPropertyType"),
13021:                        SURFACEPATCHARRAYPROPERTYTYPE_TYPE);
13022:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13023:                        "GraphStylePropertyType"), GRAPHSTYLEPROPERTYTYPE_TYPE);
13024:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13025:                        "OperationMethodRefType"), OPERATIONMETHODREFTYPE_TYPE);
13026:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13027:                        "TimePositionUnion"), TIMEPOSITIONUNION_TYPE);
13028:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13029:                        "GeometryStyleType"), GEOMETRYSTYLETYPE_TYPE);
13030:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13031:                        "GeometryStylePropertyType"),
13032:                        GEOMETRYSTYLEPROPERTYTYPE_TYPE);
13033:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13034:                        "CountExtentType"), COUNTEXTENTTYPE_TYPE);
13035:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13036:                        "TimeIntervalLengthType"), TIMEINTERVALLENGTHTYPE_TYPE);
13037:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13038:                        "MultiPointDomainType"), MULTIPOINTDOMAINTYPE_TYPE);
13039:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13040:                        "AbstractTimeTopologyPrimitiveType"),
13041:                        ABSTRACTTIMETOPOLOGYPRIMITIVETYPE_TYPE);
13042:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13043:                        "GeometryArrayPropertyType"),
13044:                        GEOMETRYARRAYPROPERTYTYPE_TYPE);
13045:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13046:                        "NameList"), NAMELIST_TYPE);
13047:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13048:                        "TimeInstantType"), TIMEINSTANTTYPE_TYPE);
13049:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13050:                        "AbstractTimeReferenceSystemType"),
13051:                        ABSTRACTTIMEREFERENCESYSTEMTYPE_TYPE);
13052:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13053:                        "TimeGeometricPrimitivePropertyType"),
13054:                        TIMEGEOMETRICPRIMITIVEPROPERTYTYPE_TYPE);
13055:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13056:                        "PolyhedralSurfaceType"), POLYHEDRALSURFACETYPE_TYPE);
13057:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13058:                        "AbstractGMLType"), ABSTRACTGMLTYPE_TYPE);
13059:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13060:                        "FeaturePropertyType"), FEATUREPROPERTYTYPE_TYPE);
13061:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13062:                        "MultiPointPropertyType"), MULTIPOINTPROPERTYTYPE_TYPE);
13063:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13064:                        "RelatedTimeType"), RELATEDTIMETYPE_TYPE);
13065:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13066:                        "RangeSetType"), RANGESETTYPE_TYPE);
13067:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13068:                        "DictionaryType"), DICTIONARYTYPE_TYPE);
13069:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13070:                        "AbstractGriddedSurfaceType"),
13071:                        ABSTRACTGRIDDEDSURFACETYPE_TYPE);
13072:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13073:                        "CurveType"), CURVETYPE_TYPE);
13074:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13075:                        "VerticalDatumRefType"), VERTICALDATUMREFTYPE_TYPE);
13076:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13077:                        "GeodeticDatumType"), GEODETICDATUMTYPE_TYPE);
13078:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13079:                        "LineStringType"), LINESTRINGTYPE_TYPE);
13080:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13081:                        "MultiSurfaceDomainType"), MULTISURFACEDOMAINTYPE_TYPE);
13082:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13083:                        "RectifiedGridDomainType"),
13084:                        RECTIFIEDGRIDDOMAINTYPE_TYPE);
13085:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13086:                        "ExtentType"), EXTENTTYPE_TYPE);
13087:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13088:                        "SurfaceInterpolationType"),
13089:                        SURFACEINTERPOLATIONTYPE_TYPE);
13090:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13091:                        "LinearRingType"), LINEARRINGTYPE_TYPE);
13092:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13093:                        "CoordinateSystemRefType"),
13094:                        COORDINATESYSTEMREFTYPE_TYPE);
13095:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13096:                        "EllipsoidType"), ELLIPSOIDTYPE_TYPE);
13097:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13098:                        "MultiSolidType"), MULTISOLIDTYPE_TYPE);
13099:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13100:                        "AbstractTopoPrimitiveType"),
13101:                        ABSTRACTTOPOPRIMITIVETYPE_TYPE);
13102:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13103:                        "TransformationRefType"), TRANSFORMATIONREFTYPE_TYPE);
13104:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13105:                        "TimeTopologyComplexType"),
13106:                        TIMETOPOLOGYCOMPLEXTYPE_TYPE);
13107:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13108:                        "TransformationType"), TRANSFORMATIONTYPE_TYPE);
13109:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13110:                        "TrackType"), TRACKTYPE_TYPE);
13111:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13112:                        "BoundingShapeType"), BOUNDINGSHAPETYPE_TYPE);
13113:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13114:                        "ImageCRSRefType"), IMAGECRSREFTYPE_TYPE);
13115:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13116:                        "ArcStringType"), ARCSTRINGTYPE_TYPE);
13117:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13118:                        "MultiPointType"), MULTIPOINTTYPE_TYPE);
13119:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13120:                        "GeometricPrimitivePropertyType"),
13121:                        GEOMETRICPRIMITIVEPROPERTYTYPE_TYPE);
13122:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13123:                        "AbstractParametricCurveSurfaceType"),
13124:                        ABSTRACTPARAMETRICCURVESURFACETYPE_TYPE);
13125:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13126:                        "CalDate"), CALDATE_TYPE);
13127:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13128:                        "TemporalDatumType"), TEMPORALDATUMTYPE_TYPE);
13129:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13130:                        "booleanOrNullList"), BOOLEANORNULLLIST_TYPE);
13131:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13132:                        "TimeCalendarEraPropertyType"),
13133:                        TIMECALENDARERAPROPERTYTYPE_TYPE);
13134:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13135:                        "ParameterValueGroupType"),
13136:                        PARAMETERVALUEGROUPTYPE_TYPE);
13137:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13138:                        "CompassPointEnumeration"),
13139:                        COMPASSPOINTENUMERATION_TYPE);
13140:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13141:                        "ParameterValueType"), PARAMETERVALUETYPE_TYPE);
13142:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13143:                        "CircleByCenterPointType"),
13144:                        CIRCLEBYCENTERPOINTTYPE_TYPE);
13145:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13146:                        "LabelStyleType"), LABELSTYLETYPE_TYPE);
13147:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13148:                        "EdgeType"), EDGETYPE_TYPE);
13149:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13150:                        "VectorType"), VECTORTYPE_TYPE);
13151:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13152:                        "PriorityLocationPropertyType"),
13153:                        PRIORITYLOCATIONPROPERTYTYPE_TYPE);
13154:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13155:                        "CircleType"), CIRCLETYPE_TYPE);
13156:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13157:                        "AbstractTimeComplexType"),
13158:                        ABSTRACTTIMECOMPLEXTYPE_TYPE);
13159:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13160:                        "BSplineType"), BSPLINETYPE_TYPE);
13161:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13162:                        "KnotType"), KNOTTYPE_TYPE);
13163:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13164:                        "DefaultStylePropertyType"),
13165:                        DEFAULTSTYLEPROPERTYTYPE_TYPE);
13166:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13167:                        "CoordinateOperationRefType"),
13168:                        COORDINATEOPERATIONREFTYPE_TYPE);
13169:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13170:                        "BezierType"), BEZIERTYPE_TYPE);
13171:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13172:                        "DirectionPropertyType"), DIRECTIONPROPERTYTYPE_TYPE);
13173:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13174:                        "LineStringSegmentType"), LINESTRINGSEGMENTTYPE_TYPE);
13175:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13176:                        "TemporalCSRefType"), TEMPORALCSREFTYPE_TYPE);
13177:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13178:                        "CartesianCSType"), CARTESIANCSTYPE_TYPE);
13179:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13180:                        "NodeType"), NODETYPE_TYPE);
13181:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13182:                        "doubleList"), DOUBLELIST_TYPE);
13183:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13184:                        "booleanList"), BOOLEANLIST_TYPE);
13185:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13186:                        "ArrayType"), ARRAYTYPE_TYPE);
13187:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13188:                        "SolidType"), SOLIDTYPE_TYPE);
13189:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13190:                        "TinType"), TINTYPE_TYPE);
13191:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13192:                        "DynamicFeatureType"), DYNAMICFEATURETYPE_TYPE);
13193:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13194:                        "GeometricComplexPropertyType"),
13195:                        GEOMETRICCOMPLEXPROPERTYTYPE_TYPE);
13196:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13197:                        "OperationParameterGroupType"),
13198:                        OPERATIONPARAMETERGROUPTYPE_TYPE);
13199:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13200:                        "UserDefinedCSType"), USERDEFINEDCSTYPE_TYPE);
13201:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13202:                        "MultiGeometryPropertyType"),
13203:                        MULTIGEOMETRYPROPERTYTYPE_TYPE);
13204:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13205:                        "DataBlockType"), DATABLOCKTYPE_TYPE);
13206:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13207:                        "TimeUnitType"), TIMEUNITTYPE_TYPE);
13208:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13209:                        "AbstractTimeObjectType"), ABSTRACTTIMEOBJECTTYPE_TYPE);
13210:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13211:                        "TimeTopologyComplexPropertyType"),
13212:                        TIMETOPOLOGYCOMPLEXPROPERTYTYPE_TYPE);
13213:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13214:                        "CurvePropertyType"), CURVEPROPERTYTYPE_TYPE);
13215:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13216:                        "TopoSolidType"), TOPOSOLIDTYPE_TYPE);
13217:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13218:                        "QuantityPropertyType"), QUANTITYPROPERTYTYPE_TYPE);
13219:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13220:                        "CodeType"), CODETYPE_TYPE);
13221:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13222:                        "StringOrRefType"), STRINGORREFTYPE_TYPE);
13223:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13224:                        "MultiPolygonType"), MULTIPOLYGONTYPE_TYPE);
13225:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13226:                        "CompositeValueType"), COMPOSITEVALUETYPE_TYPE);
13227:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13228:                        "OperationParameterBaseType"),
13229:                        OPERATIONPARAMETERBASETYPE_TYPE);
13230:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13231:                        "EngineeringDatumType"), ENGINEERINGDATUMTYPE_TYPE);
13232:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13233:                        "CurveInterpolationType"), CURVEINTERPOLATIONTYPE_TYPE);
13234:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13235:                        "TopoVolumePropertyType"), TOPOVOLUMEPROPERTYTYPE_TYPE);
13236:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13237:                        "TimeOrdinalEraType"), TIMEORDINALERATYPE_TYPE);
13238:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13239:                        "AbstractRingType"), ABSTRACTRINGTYPE_TYPE);
13240:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13241:                        "OperationMethodType"), OPERATIONMETHODTYPE_TYPE);
13242:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13243:                        "OperationParameterGroupBaseType"),
13244:                        OPERATIONPARAMETERGROUPBASETYPE_TYPE);
13245:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13246:                        "CoordinateSystemAxisType"),
13247:                        COORDINATESYSTEMAXISTYPE_TYPE);
13248:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13249:                        "AbstractCurveSegmentType"),
13250:                        ABSTRACTCURVESEGMENTTYPE_TYPE);
13251:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13252:                        "AbstractGeneralParameterValueType"),
13253:                        ABSTRACTGENERALPARAMETERVALUETYPE_TYPE);
13254:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13255:                        "OperationMethodBaseType"),
13256:                        OPERATIONMETHODBASETYPE_TYPE);
13257:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13258:                        "MultiSolidPropertyType"), MULTISOLIDPROPERTYTYPE_TYPE);
13259:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13260:                        "PolygonPatchType"), POLYGONPATCHTYPE_TYPE);
13261:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13262:                        "DrawingTypeType"), DRAWINGTYPETYPE_TYPE);
13263:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13264:                        "SphereType"), SPHERETYPE_TYPE);
13265:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13266:                        "ArcMinutesType"), ARCMINUTESTYPE_TYPE);
13267:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13268:                        "PointPropertyType"), POINTPROPERTYTYPE_TYPE);
13269:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13270:                        "RingType"), RINGTYPE_TYPE);
13271:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13272:                        "SurfacePropertyType"), SURFACEPROPERTYTYPE_TYPE);
13273:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13274:                        "GridType"), GRIDTYPE_TYPE);
13275:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13276:                        "GeocentricCRSRefType"), GEOCENTRICCRSREFTYPE_TYPE);
13277:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13278:                        "CodeOrNullListType"), CODEORNULLLISTTYPE_TYPE);
13279:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13280:                        "SurfaceArrayPropertyType"),
13281:                        SURFACEARRAYPROPERTYTYPE_TYPE);
13282:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13283:                        "SolidArrayPropertyType"), SOLIDARRAYPROPERTYTYPE_TYPE);
13284:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13285:                        "AbstractGeneralOperationParameterType"),
13286:                        ABSTRACTGENERALOPERATIONPARAMETERTYPE_TYPE);
13287:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13288:                        "LocationPropertyType"), LOCATIONPROPERTYTYPE_TYPE);
13289:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13290:                        "SphericalCSRefType"), SPHERICALCSREFTYPE_TYPE);
13291:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13292:                        "TopoComplexType"), TOPOCOMPLEXTYPE_TYPE);
13293:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13294:                        "LabelStylePropertyType"), LABELSTYLEPROPERTYTYPE_TYPE);
13295:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13296:                        "QNameList"), QNAMELIST_TYPE);
13297:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13298:                        "CoverageFunctionType"), COVERAGEFUNCTIONTYPE_TYPE);
13299:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13300:                        "BagType"), BAGTYPE_TYPE);
13301:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13302:                        "MeasureType"), MEASURETYPE_TYPE);
13303:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13304:                        "SpeedType"), SPEEDTYPE_TYPE);
13305:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13306:                        "SequenceRuleNames"), SEQUENCERULENAMES_TYPE);
13307:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13308:                        "AbstractTimeSliceType"), ABSTRACTTIMESLICETYPE_TYPE);
13309:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13310:                        "AbstractGeometryType"), ABSTRACTGEOMETRYTYPE_TYPE);
13311:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13312:                        "SingleOperationRefType"), SINGLEOPERATIONREFTYPE_TYPE);
13313:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13314:                        "TriangulatedSurfaceType"),
13315:                        TRIANGULATEDSURFACETYPE_TYPE);
13316:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13317:                        "GeographicCRSType"), GEOGRAPHICCRSTYPE_TYPE);
13318:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13319:                        "CylindricalCSType"), CYLINDRICALCSTYPE_TYPE);
13320:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13321:                        "SuccessionType"), SUCCESSIONTYPE_TYPE);
13322:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13323:                        "MultiPolygonPropertyType"),
13324:                        MULTIPOLYGONPROPERTYTYPE_TYPE);
13325:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13326:                        "VerticalDatumType"), VERTICALDATUMTYPE_TYPE);
13327:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13328:                        "CompositeSolidPropertyType"),
13329:                        COMPOSITESOLIDPROPERTYTYPE_TYPE);
13330:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13331:                        "PixelInCellType"), PIXELINCELLTYPE_TYPE);
13332:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13333:                        "SurfaceType"), SURFACETYPE_TYPE);
13334:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13335:                        "LengthType"), LENGTHTYPE_TYPE);
13336:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13337:                        "MetaDataPropertyType"), METADATAPROPERTYTYPE_TYPE);
13338:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13339:                        "QuantityExtentType"), QUANTITYEXTENTTYPE_TYPE);
13340:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13341:                        "GeographicCRSRefType"), GEOGRAPHICCRSREFTYPE_TYPE);
13342:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13343:                        "TimeTopologyPrimitivePropertyType"),
13344:                        TIMETOPOLOGYPRIMITIVEPROPERTYTYPE_TYPE);
13345:                put(new org.geotools.feature.Name("http://www.opengis.net/gml",
13346:                        "TimeNodeType"), TIMENODETYPE_TYPE);
13347:            }
13348:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.