|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectit.cutruzzula.lgml.GMLParser
public class GMLParser
The core class of the LGML parser
Method Summary | |
---|---|
static AbstractGeometry |
parseNodeXY(org.w3c.dom.Node gmlNode)
Method to parse a DOM node representing GML content, respecting the axis order X, Y and (if present and if the GML object has the "srsDimension" set to "3") Z. Examples: the couple [24.44 16.3] will be parsed as [24.44 16.3] the triple [24.44 16.3 0.2] will be parsed as [24.44 16.3 0.2] |
static AbstractGeometry |
parseNodeYX(org.w3c.dom.Node gmlNode)
Method to parse a DOM node representing GML content, respecting the axis order X, Y and (if present and if the GML object has the "srsDimension" set to "3") Z. Examples: the couple [24.44 16.3] will be parsed as [16.3 24.44] the triple [24.44 16.3 0.2] will be parsed as [16.3 24.44 0.2] |
static AbstractGeometry |
parseStringXY(java.lang.String xml)
Method to parse a string representing GML content, respecting the axis order X, Y and (if present and if the GML object has the "srsDimension" set to "3") Z. Examples: the couple [24.44 16.3] will be parsed as [24.44 16.3] the triple [24.44 16.3 0.2] will be parsed as [24.44 16.3 0.2] |
static AbstractGeometry |
parseStringYX(java.lang.String xml)
Method to parse a string representing GML content, considering the axis order as Y, X and (if present and if the GML object has the "srsDimension" set to "3") Z. Examples: the couple [24.44 16.3] will be parsed as [16.3 24.44] the triple [24.44 16.3 0.2] will be parsed as [16.3 24.44 0.2] |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static AbstractGeometry parseStringXY(java.lang.String xml) throws java.lang.Exception
xml
- The string with GML content
java.lang.Exception
- A generic exception thrown in parsingpublic static AbstractGeometry parseStringYX(java.lang.String xml) throws java.lang.Exception
xml
- The string with GML content
java.lang.Exception
- A generic exception thrown in parsingpublic static AbstractGeometry parseNodeXY(org.w3c.dom.Node gmlNode) throws java.lang.Exception
gmlNode
- The org.w3c.dom.Node with GML content
java.lang.Exception
- A generic exception thrown in parsingpublic static AbstractGeometry parseNodeYX(org.w3c.dom.Node gmlNode) throws java.lang.Exception
gmlNode
- The org.w3c.dom.Node with GML content
java.lang.Exception
- A generic exception thrown in parsing
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |