Package net.opengis.gml
Interface AbstractTopoPrimitiveType
-
- All Superinterfaces:
AbstractGMLType,AbstractTopologyType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Subinterfaces:
EdgeType,FaceType,NodeType,TopoSolidType
- All Known Implementing Classes:
AbstractTopoPrimitiveTypeImpl,EdgeTypeImpl,FaceTypeImpl,NodeTypeImpl,TopoSolidTypeImpl
public interface AbstractTopoPrimitiveType extends AbstractTopologyType
An XML AbstractTopoPrimitiveType(@http://www.opengis.net/gml). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAbstractTopoPrimitiveType.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 ContainerPropertyTypeaddNewContainer()Appends and returns a new empty "container" elementIsolatedPropertyTypeaddNewIsolated()Appends and returns a new empty value (as xml) as the last "isolated" elementContainerPropertyTypegetContainer()Gets the "container" elementIsolatedPropertyType[]getIsolatedArray()Gets array of all "isolated" elementsIsolatedPropertyTypegetIsolatedArray(int i)Gets ith "isolated" elementIsolatedPropertyTypeinsertNewIsolated(int i)Inserts and returns a new empty value (as xml) as the ith "isolated" elementbooleanisSetContainer()True if has "container" elementvoidremoveIsolated(int i)Removes the ith "isolated" elementvoidsetContainer(ContainerPropertyType container)Sets the "container" elementvoidsetIsolatedArray(int i, IsolatedPropertyType isolated)Sets ith "isolated" elementvoidsetIsolatedArray(IsolatedPropertyType[] isolatedArray)Sets array of all "isolated" elementintsizeOfIsolatedArray()Returns number of "isolated" elementvoidunsetContainer()Unsets the "container" element-
Methods inherited from interface net.opengis.gml.AbstractGMLType
addNewDescription, addNewMetaDataProperty, addNewName, getDescription, getId, getMetaDataPropertyArray, getMetaDataPropertyArray, getNameArray, getNameArray, insertNewMetaDataProperty, insertNewName, isSetDescription, isSetId, removeMetaDataProperty, removeName, setDescription, setId, setMetaDataPropertyArray, setMetaDataPropertyArray, setNameArray, setNameArray, sizeOfMetaDataPropertyArray, sizeOfNameArray, unsetDescription, unsetId, xgetId, xsetId
-
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
-
getIsolatedArray
IsolatedPropertyType[] getIsolatedArray()
Gets array of all "isolated" elements
-
getIsolatedArray
IsolatedPropertyType getIsolatedArray(int i)
Gets ith "isolated" element
-
sizeOfIsolatedArray
int sizeOfIsolatedArray()
Returns number of "isolated" element
-
setIsolatedArray
void setIsolatedArray(IsolatedPropertyType[] isolatedArray)
Sets array of all "isolated" element
-
setIsolatedArray
void setIsolatedArray(int i, IsolatedPropertyType isolated)Sets ith "isolated" element
-
insertNewIsolated
IsolatedPropertyType insertNewIsolated(int i)
Inserts and returns a new empty value (as xml) as the ith "isolated" element
-
addNewIsolated
IsolatedPropertyType addNewIsolated()
Appends and returns a new empty value (as xml) as the last "isolated" element
-
removeIsolated
void removeIsolated(int i)
Removes the ith "isolated" element
-
getContainer
ContainerPropertyType getContainer()
Gets the "container" element
-
isSetContainer
boolean isSetContainer()
True if has "container" element
-
setContainer
void setContainer(ContainerPropertyType container)
Sets the "container" element
-
addNewContainer
ContainerPropertyType addNewContainer()
Appends and returns a new empty "container" element
-
unsetContainer
void unsetContainer()
Unsets the "container" element
-
-