📄 wmsdescribelayertypes.wms_describelayerresponse.html
字号:
<P><DD><DL><DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/xml/schema/ElementGrouping.html" title="interface in org.geotools.xml.schema"><CODE>ElementGrouping</CODE></A></DL></DD></DL><HR><A NAME="getChildElements()"><!-- --></A><H3>getChildElements</H3><PRE>public <A HREF="../../../../../org/geotools/xml/schema/Element.html" title="interface in org.geotools.xml.schema">Element</A>[] <B>getChildElements</B>()</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="getValue(org.geotools.xml.schema.Element, org.geotools.xml.schema.ElementValue[], org.xml.sax.Attributes, java.util.Map)"><!-- --></A><H3>getValue</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> <B>getValue</B>(<A HREF="../../../../../org/geotools/xml/schema/Element.html" title="interface in org.geotools.xml.schema">Element</A> element, <A HREF="../../../../../org/geotools/xml/schema/ElementValue.html" title="interface in org.geotools.xml.schema">ElementValue</A>[] value, <A HREF="http://java.sun.com/j2se/1.4/docs/api/org/xml/sax/Attributes.html" title="class or interface in org.xml.sax">Attributes</A> attrs, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/Map.html" title="class or interface in java.util">Map</A> hints) throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/org/xml/sax/SAXException.html" title="class or interface in org.xml.sax">SAXException</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/javax/naming/OperationNotSupportedException.html" title="class or interface in javax.naming">OperationNotSupportedException</A></PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/Type.html" title="interface in org.geotools.xml.schema">Type</A></CODE></B></DD><DD><p> This method is intended to receive the child elements in the form of ElementValues (@see ElementValue). Recall that this is a pairing containing a reference to the type and the actual value (do not call .getValue on the types). This should return the real value (interpreted value) for this element based on it's children. Remember, this is a XML is a tree structure, so if you don't include some children, they are gone forever (so be careful when ignoring data). </p> <p> If the element had #CData (Nested Child Text), this will appear in the first slot, with a null Element. </p> <p> A SAXNotSupportedException should be thrown when the child's [inherited, default implementation of getValue(ElementValue[],Attributes)] method should be used. </p><P><DD><DL><DT><B>Returns:</B><DD>Object<DT><B>Throws:</B><DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/javax/naming/OperationNotSupportedException.html" title="class or interface in javax.naming">OperationNotSupportedException</A></CODE><DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/org/xml/sax/SAXException.html" title="class or interface in org.xml.sax">SAXException</A></CODE><DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/xml/schema/ElementValue.html" title="interface in org.geotools.xml.schema"><CODE>ElementValue</CODE></A></DL></DD></DL><HR><A NAME="getName()"><!-- --></A><H3>getName</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getName</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/Type.html" title="interface in org.geotools.xml.schema">Type</A></CODE></B></DD><DD><p> This returns the XML Schema declaration name of this type (both complex and simple types have names ...) </p><P><DD><DL></DL></DD></DL><HR><A NAME="getInstanceType()"><!-- --></A><H3>getInstanceType</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Class.html" title="class or interface in java.lang">Class</A> <B>getInstanceType</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/Type.html" title="interface in org.geotools.xml.schema">Type</A></CODE></B></DD><DD><p> This will return the intended Java Class for this element type. For generic complex types this will be an object array. SimpleTypes will match as they are parsed, and custom extensions will also return the appropriate class value. </p><P><DD><DL></DL></DD></DL><HR><A NAME="canEncode(org.geotools.xml.schema.Element, java.lang.Object, java.util.Map)"><!-- --></A><H3>canEncode</H3><PRE>public boolean <B>canEncode</B>(<A HREF="../../../../../org/geotools/xml/schema/Element.html" title="interface in org.geotools.xml.schema">Element</A> element, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> value, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/Map.html" title="class or interface in java.util">Map</A> hints)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/Type.html" title="interface in org.geotools.xml.schema">Type</A></CODE></B></DD><DD>Can I write this object out as element specified?<P><DD><DL><DT><B>Parameters:</B><DD><CODE>element</CODE> - The element which may be used to represent the Object. This is included to allow for child definitions to include addition information where appropriate.<DD><CODE>value</CODE> - An Object which may or may not be encodeable by this type. The value may also be null.<DT><B>Returns:</B><DD>True when the encode method can interpret the given element/value pair into valid xml.<DT><B>See Also:</B><DD><CODE>Type#encode(Element, Object, Writer, Map)</CODE></DL></DD></DL><HR><A NAME="encode(org.geotools.xml.schema.Element, java.lang.Object, org.geotools.xml.PrintHandler, java.util.Map)"><!-- --></A><H3>encode</H3><PRE>public void <B>encode</B>(<A HREF="../../../../../org/geotools/xml/schema/Element.html" title="interface in org.geotools.xml.schema">Element</A> element, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> value, <A HREF="../../../../../org/geotools/xml/PrintHandler.html" title="interface in org.geotools.xml">PrintHandler</A> output, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/Map.html" title="class or interface in java.util">Map</A> hints) throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/javax/naming/OperationNotSupportedException.html" title="class or interface in javax.naming">OperationNotSupportedException</A></PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/Type.html" title="interface in org.geotools.xml.schema">Type</A></CODE></B></DD><DD>Encode value as element on the provided output. <p> This is encoding because the PrintHandler does not have to go back to a stream. </p><P><DD><DL><DT><B>Parameters:</B><DD><CODE>element</CODE> - The original element declaration to which we should encode.<DD><CODE>value</CODE> - The Object to encode.<DD><CODE>output</CODE> - This is where the output should be written to.<DD><CODE>hints</CODE> - For providing additional context information to specific schemas.<DT><B>Throws:</B><DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/javax/naming/OperationNotSupportedException.html" title="class or interface in javax.naming">OperationNotSupportedException</A></CODE> - When this type cannot be encoded ... and wasn't checked first.<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></CODE> - When there is an error with the Writer.</DL></DD></DL><HR><A NAME="getParent()"><!-- --></A><H3>getParent</H3><PRE>public <A HREF="../../../../../org/geotools/xml/schema/Type.html" title="interface in org.geotools.xml.schema">Type</A> <B>getParent</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html" title="interface in org.geotools.xml.schema">ComplexType</A></CODE></B></DD><DD><p> This is used to represent the heirarchy represented within an xml schema document(s). This is particularily useful, as the parent will have the first attempt to create a real (non Object[]) value of the element. For more information see getValue. </p><P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html#getParent()">getParent</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html" title="interface in org.geotools.xml.schema">ComplexType</A></CODE></DL></DD><DD><DL><DT><B>See Also:</B><DD><CODE>Type#getValue(Element, ElementValue[], Attributes)</CODE></DL></DD></DL><HR><A NAME="isAbstract()"><!-- --></A><H3>isAbstract</H3><PRE>public boolean <B>isAbstract</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html" title="interface in org.geotools.xml.schema">ComplexType</A></CODE></B></DD><DD>Returns true when the complexType should be considered abstract, as defined by the XML schema of which this complex type definition is a part.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html#isAbstract()">isAbstract</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html" title="interface in org.geotools.xml.schema">ComplexType</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getAnyAttributeNameSpace()"><!-- --></A><H3>getAnyAttributeNameSpace</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getAnyAttributeNameSpace</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html" title="interface in org.geotools.xml.schema">ComplexType</A></CODE></B></DD><DD>This methos represents the potential 'anyAttribute' declaration's namespace attribute which may occur within a complex type definition.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html#getAnyAttributeNameSpace()">getAnyAttributeNameSpace</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html" title="interface in org.geotools.xml.schema">ComplexType</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getBlock()"><!-- --></A><H3>getBlock</H3><PRE>public int <B>getBlock</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html" title="interface in org.geotools.xml.schema">ComplexType</A></CODE></B></DD><DD>Specifies a mask which denotes which substitution mechanisms may be used for this complex type definition.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html#getBlock()">getBlock</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/xml/schema/ComplexType.html" title="interface in org.geotools.xml.schema">ComplexType</A></CODE></DL></DD><DD><DL><DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/xml/schema/Schema.html#EXTENSION"><CODE>Schema.EXTENSION</CODE></A>, <A HREF="../../../../../org/geotools/xml/schema/Schema.html#RESTRICTION"><CODE>Schema.RESTRICTION</CODE></A>, <A HREF="../../../../../org/geotools/xml/schema/Schema.html#ALL"><CODE>Schema.ALL</CODE></A></DL></DD></DL><HR>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -