Package net.opengis.wcs.x11
Interface FieldType
-
- All Superinterfaces:
DescriptionType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
FieldTypeImpl
public interface FieldType extends DescriptionType
An XML FieldType(@http://www.opengis.net/wcs/1.1). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classFieldType.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 AxisTypeaddNewAxis()Appends and returns a new empty value (as xml) as the last "Axis" elementUnNamedDomainTypeaddNewDefinition()Appends and returns a new empty "Definition" elementInterpolationMethodsDocument.InterpolationMethodsaddNewInterpolationMethods()Appends and returns a new empty "InterpolationMethods" elementCodeTypeaddNewNullValue()Appends and returns a new empty value (as xml) as the last "NullValue" elementAxisType[]getAxisArray()Gets array of all "Axis" elementsAxisTypegetAxisArray(int i)Gets ith "Axis" elementUnNamedDomainTypegetDefinition()Gets the "Definition" elementStringgetIdentifier()Gets the "Identifier" elementInterpolationMethodsDocument.InterpolationMethodsgetInterpolationMethods()Gets the "InterpolationMethods" elementCodeType[]getNullValueArray()Gets array of all "NullValue" elementsCodeTypegetNullValueArray(int i)Gets ith "NullValue" elementAxisTypeinsertNewAxis(int i)Inserts and returns a new empty value (as xml) as the ith "Axis" elementCodeTypeinsertNewNullValue(int i)Inserts and returns a new empty value (as xml) as the ith "NullValue" elementvoidremoveAxis(int i)Removes the ith "Axis" elementvoidremoveNullValue(int i)Removes the ith "NullValue" elementvoidsetAxisArray(int i, AxisType axis)Sets ith "Axis" elementvoidsetAxisArray(AxisType[] axisArray)Sets array of all "Axis" elementvoidsetDefinition(UnNamedDomainType definition)Sets the "Definition" elementvoidsetIdentifier(String identifier)Sets the "Identifier" elementvoidsetInterpolationMethods(InterpolationMethodsDocument.InterpolationMethods interpolationMethods)Sets the "InterpolationMethods" elementvoidsetNullValueArray(int i, CodeType nullValue)Sets ith "NullValue" elementvoidsetNullValueArray(CodeType[] nullValueArray)Sets array of all "NullValue" elementintsizeOfAxisArray()Returns number of "Axis" elementintsizeOfNullValueArray()Returns number of "NullValue" elementIdentifierTypexgetIdentifier()Gets (as xml) the "Identifier" elementvoidxsetIdentifier(IdentifierType identifier)Sets (as xml) the "Identifier" element-
Methods inherited from interface net.opengis.ows.x11.DescriptionType
addNewAbstract, addNewKeywords, addNewTitle, getAbstractArray, getAbstractArray, getKeywordsArray, getKeywordsArray, getTitleArray, getTitleArray, insertNewAbstract, insertNewKeywords, insertNewTitle, removeAbstract, removeKeywords, removeTitle, setAbstractArray, setAbstractArray, setKeywordsArray, setKeywordsArray, setTitleArray, setTitleArray, sizeOfAbstractArray, sizeOfKeywordsArray, sizeOfTitleArray
-
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
-
getIdentifier
String getIdentifier()
Gets the "Identifier" element
-
xgetIdentifier
IdentifierType xgetIdentifier()
Gets (as xml) the "Identifier" element
-
setIdentifier
void setIdentifier(String identifier)
Sets the "Identifier" element
-
xsetIdentifier
void xsetIdentifier(IdentifierType identifier)
Sets (as xml) the "Identifier" element
-
getDefinition
UnNamedDomainType getDefinition()
Gets the "Definition" element
-
setDefinition
void setDefinition(UnNamedDomainType definition)
Sets the "Definition" element
-
addNewDefinition
UnNamedDomainType addNewDefinition()
Appends and returns a new empty "Definition" element
-
getNullValueArray
CodeType[] getNullValueArray()
Gets array of all "NullValue" elements
-
getNullValueArray
CodeType getNullValueArray(int i)
Gets ith "NullValue" element
-
sizeOfNullValueArray
int sizeOfNullValueArray()
Returns number of "NullValue" element
-
setNullValueArray
void setNullValueArray(CodeType[] nullValueArray)
Sets array of all "NullValue" element
-
setNullValueArray
void setNullValueArray(int i, CodeType nullValue)Sets ith "NullValue" element
-
insertNewNullValue
CodeType insertNewNullValue(int i)
Inserts and returns a new empty value (as xml) as the ith "NullValue" element
-
addNewNullValue
CodeType addNewNullValue()
Appends and returns a new empty value (as xml) as the last "NullValue" element
-
removeNullValue
void removeNullValue(int i)
Removes the ith "NullValue" element
-
getInterpolationMethods
InterpolationMethodsDocument.InterpolationMethods getInterpolationMethods()
Gets the "InterpolationMethods" element
-
setInterpolationMethods
void setInterpolationMethods(InterpolationMethodsDocument.InterpolationMethods interpolationMethods)
Sets the "InterpolationMethods" element
-
addNewInterpolationMethods
InterpolationMethodsDocument.InterpolationMethods addNewInterpolationMethods()
Appends and returns a new empty "InterpolationMethods" element
-
getAxisArray
AxisType[] getAxisArray()
Gets array of all "Axis" elements
-
getAxisArray
AxisType getAxisArray(int i)
Gets ith "Axis" element
-
sizeOfAxisArray
int sizeOfAxisArray()
Returns number of "Axis" element
-
setAxisArray
void setAxisArray(AxisType[] axisArray)
Sets array of all "Axis" element
-
setAxisArray
void setAxisArray(int i, AxisType axis)Sets ith "Axis" element
-
insertNewAxis
AxisType insertNewAxis(int i)
Inserts and returns a new empty value (as xml) as the ith "Axis" element
-
addNewAxis
AxisType addNewAxis()
Appends and returns a new empty value (as xml) as the last "Axis" element
-
removeAxis
void removeAxis(int i)
Removes the ith "Axis" element
-
-