Package net.opengis.swe.x101
Interface AllowedValuesDocument.AllowedValues
-
- All Superinterfaces:
org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
AllowedValuesDocumentImpl.AllowedValuesImpl
- Enclosing interface:
- AllowedValuesDocument
public static interface AllowedValuesDocument.AllowedValues extends org.apache.xmlbeans.XmlObjectAn XML AllowedValues(@http://www.opengis.net/swe/1.0.1). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAllowedValuesDocument.AllowedValues.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 voidaddInterval(List interval)Appends the value as the last "interval" elementDecimalPairaddNewInterval()Appends and returns a new empty value (as xml) as the last "interval" elementDecimalListaddNewValueList()Appends and returns a new empty value (as xml) as the last "valueList" elementvoidaddValueList(List valueList)Appends the value as the last "valueList" elementStringgetId()Gets the "id" attributeList[]getIntervalArray()Gets array of all "interval" elementsListgetIntervalArray(int i)Gets ith "interval" elementdoublegetMax()Gets the "max" elementdoublegetMin()Gets the "min" elementList[]getValueListArray()Gets array of all "valueList" elementsListgetValueListArray(int i)Gets ith "valueList" elementvoidinsertInterval(int i, List interval)Inserts the value as the ith "interval" elementDecimalPairinsertNewInterval(int i)Inserts and returns a new empty value (as xml) as the ith "interval" elementDecimalListinsertNewValueList(int i)Inserts and returns a new empty value (as xml) as the ith "valueList" elementvoidinsertValueList(int i, List valueList)Inserts the value as the ith "valueList" elementbooleanisSetId()True if has "id" attributebooleanisSetMax()True if has "max" elementbooleanisSetMin()True if has "min" elementvoidremoveInterval(int i)Removes the ith "interval" elementvoidremoveValueList(int i)Removes the ith "valueList" elementvoidsetId(String id)Sets the "id" attributevoidsetIntervalArray(int i, List interval)Sets ith "interval" elementvoidsetIntervalArray(List[] intervalArray)Sets array of all "interval" elementvoidsetMax(double max)Sets the "max" elementvoidsetMin(double min)Sets the "min" elementvoidsetValueListArray(int i, List valueList)Sets ith "valueList" elementvoidsetValueListArray(List[] valueListArray)Sets array of all "valueList" elementintsizeOfIntervalArray()Returns number of "interval" elementintsizeOfValueListArray()Returns number of "valueList" elementvoidunsetId()Unsets the "id" attributevoidunsetMax()Unsets the "max" elementvoidunsetMin()Unsets the "min" elementorg.apache.xmlbeans.XmlIDxgetId()Gets (as xml) the "id" attributeDecimalPair[]xgetIntervalArray()Gets (as xml) array of all "interval" elementsDecimalPairxgetIntervalArray(int i)Gets (as xml) ith "interval" elementorg.apache.xmlbeans.XmlDoublexgetMax()Gets (as xml) the "max" elementorg.apache.xmlbeans.XmlDoublexgetMin()Gets (as xml) the "min" elementDecimalList[]xgetValueListArray()Gets (as xml) array of all "valueList" elementsDecimalListxgetValueListArray(int i)Gets (as xml) ith "valueList" elementvoidxsetId(org.apache.xmlbeans.XmlID id)Sets (as xml) the "id" attributevoidxsetIntervalArray(int i, DecimalPair interval)Sets (as xml) ith "interval" elementvoidxsetIntervalArray(DecimalPair[] intervalArray)Sets (as xml) array of all "interval" elementvoidxsetMax(org.apache.xmlbeans.XmlDouble max)Sets (as xml) the "max" elementvoidxsetMin(org.apache.xmlbeans.XmlDouble min)Sets (as xml) the "min" elementvoidxsetValueListArray(int i, DecimalList valueList)Sets (as xml) ith "valueList" elementvoidxsetValueListArray(DecimalList[] valueListArray)Sets (as xml) array of all "valueList" element-
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
-
getMin
double getMin()
Gets the "min" element
-
xgetMin
org.apache.xmlbeans.XmlDouble xgetMin()
Gets (as xml) the "min" element
-
isSetMin
boolean isSetMin()
True if has "min" element
-
setMin
void setMin(double min)
Sets the "min" element
-
xsetMin
void xsetMin(org.apache.xmlbeans.XmlDouble min)
Sets (as xml) the "min" element
-
unsetMin
void unsetMin()
Unsets the "min" element
-
getMax
double getMax()
Gets the "max" element
-
xgetMax
org.apache.xmlbeans.XmlDouble xgetMax()
Gets (as xml) the "max" element
-
isSetMax
boolean isSetMax()
True if has "max" element
-
setMax
void setMax(double max)
Sets the "max" element
-
xsetMax
void xsetMax(org.apache.xmlbeans.XmlDouble max)
Sets (as xml) the "max" element
-
unsetMax
void unsetMax()
Unsets the "max" element
-
getIntervalArray
List[] getIntervalArray()
Gets array of all "interval" elements
-
getIntervalArray
List getIntervalArray(int i)
Gets ith "interval" element
-
xgetIntervalArray
DecimalPair[] xgetIntervalArray()
Gets (as xml) array of all "interval" elements
-
xgetIntervalArray
DecimalPair xgetIntervalArray(int i)
Gets (as xml) ith "interval" element
-
sizeOfIntervalArray
int sizeOfIntervalArray()
Returns number of "interval" element
-
setIntervalArray
void setIntervalArray(List[] intervalArray)
Sets array of all "interval" element
-
setIntervalArray
void setIntervalArray(int i, List interval)Sets ith "interval" element
-
xsetIntervalArray
void xsetIntervalArray(DecimalPair[] intervalArray)
Sets (as xml) array of all "interval" element
-
xsetIntervalArray
void xsetIntervalArray(int i, DecimalPair interval)Sets (as xml) ith "interval" element
-
insertInterval
void insertInterval(int i, List interval)Inserts the value as the ith "interval" element
-
addInterval
void addInterval(List interval)
Appends the value as the last "interval" element
-
insertNewInterval
DecimalPair insertNewInterval(int i)
Inserts and returns a new empty value (as xml) as the ith "interval" element
-
addNewInterval
DecimalPair addNewInterval()
Appends and returns a new empty value (as xml) as the last "interval" element
-
removeInterval
void removeInterval(int i)
Removes the ith "interval" element
-
getValueListArray
List[] getValueListArray()
Gets array of all "valueList" elements
-
getValueListArray
List getValueListArray(int i)
Gets ith "valueList" element
-
xgetValueListArray
DecimalList[] xgetValueListArray()
Gets (as xml) array of all "valueList" elements
-
xgetValueListArray
DecimalList xgetValueListArray(int i)
Gets (as xml) ith "valueList" element
-
sizeOfValueListArray
int sizeOfValueListArray()
Returns number of "valueList" element
-
setValueListArray
void setValueListArray(List[] valueListArray)
Sets array of all "valueList" element
-
setValueListArray
void setValueListArray(int i, List valueList)Sets ith "valueList" element
-
xsetValueListArray
void xsetValueListArray(DecimalList[] valueListArray)
Sets (as xml) array of all "valueList" element
-
xsetValueListArray
void xsetValueListArray(int i, DecimalList valueList)Sets (as xml) ith "valueList" element
-
insertValueList
void insertValueList(int i, List valueList)Inserts the value as the ith "valueList" element
-
addValueList
void addValueList(List valueList)
Appends the value as the last "valueList" element
-
insertNewValueList
DecimalList insertNewValueList(int i)
Inserts and returns a new empty value (as xml) as the ith "valueList" element
-
addNewValueList
DecimalList addNewValueList()
Appends and returns a new empty value (as xml) as the last "valueList" element
-
removeValueList
void removeValueList(int i)
Removes the ith "valueList" element
-
getId
String getId()
Gets the "id" attribute
-
xgetId
org.apache.xmlbeans.XmlID xgetId()
Gets (as xml) the "id" attribute
-
isSetId
boolean isSetId()
True if has "id" attribute
-
setId
void setId(String id)
Sets the "id" attribute
-
xsetId
void xsetId(org.apache.xmlbeans.XmlID id)
Sets (as xml) the "id" attribute
-
unsetId
void unsetId()
Unsets the "id" attribute
-
-