Package net.opengis.gml
Interface PolygonPatchArrayPropertyType
-
- All Superinterfaces:
SurfacePatchArrayPropertyType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
PolygonPatchArrayPropertyTypeImpl
public interface PolygonPatchArrayPropertyType extends SurfacePatchArrayPropertyType
An XML PolygonPatchArrayPropertyType(@http://www.opengis.net/gml). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPolygonPatchArrayPropertyType.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static org.apache.xmlbeans.SchemaTypetype
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PolygonPatchTypeaddNewPolygonPatch()Appends and returns a new empty value (as xml) as the last "PolygonPatch" elementPolygonPatchType[]getPolygonPatchArray()Gets array of all "PolygonPatch" elementsPolygonPatchTypegetPolygonPatchArray(int i)Gets ith "PolygonPatch" elementPolygonPatchTypeinsertNewPolygonPatch(int i)Inserts and returns a new empty value (as xml) as the ith "PolygonPatch" elementvoidremovePolygonPatch(int i)Removes the ith "PolygonPatch" elementvoidsetPolygonPatchArray(int i, PolygonPatchType polygonPatch)Sets ith "PolygonPatch" elementvoidsetPolygonPatchArray(PolygonPatchType[] polygonPatchArray)Sets array of all "PolygonPatch" elementintsizeOfPolygonPatchArray()Returns number of "PolygonPatch" element-
Methods inherited from interface net.opengis.gml.SurfacePatchArrayPropertyType
addNewSurfacePatch, getSurfacePatchArray, getSurfacePatchArray, insertNewSurfacePatch, removeSurfacePatch, setSurfacePatchArray, setSurfacePatchArray, sizeOfSurfacePatchArray
-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Method Detail
-
getPolygonPatchArray
PolygonPatchType[] getPolygonPatchArray()
Gets array of all "PolygonPatch" elements
-
getPolygonPatchArray
PolygonPatchType getPolygonPatchArray(int i)
Gets ith "PolygonPatch" element
-
sizeOfPolygonPatchArray
int sizeOfPolygonPatchArray()
Returns number of "PolygonPatch" element
-
setPolygonPatchArray
void setPolygonPatchArray(PolygonPatchType[] polygonPatchArray)
Sets array of all "PolygonPatch" element
-
setPolygonPatchArray
void setPolygonPatchArray(int i, PolygonPatchType polygonPatch)Sets ith "PolygonPatch" element
-
insertNewPolygonPatch
PolygonPatchType insertNewPolygonPatch(int i)
Inserts and returns a new empty value (as xml) as the ith "PolygonPatch" element
-
addNewPolygonPatch
PolygonPatchType addNewPolygonPatch()
Appends and returns a new empty value (as xml) as the last "PolygonPatch" element
-
removePolygonPatch
void removePolygonPatch(int i)
Removes the ith "PolygonPatch" element
-
-