| java.lang.Object | |||
| ↳ | com.google.gdata.data.AbstractExtension | ||
| ↳ | com.google.gdata.data.ExtensionPoint | ||
| ↳ | com.google.gdata.data.geo.impl.GmlPoint | ||
Extension for a GML gml:Point element.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | NAME | ||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.data.ExtensionPoint
| |||||||||||
From class
com.google.gdata.data.AbstractExtension
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an empty gml:Point element.
| |||||||||||
Constructs a gml:Point element out of the given lat and lon values.
| |||||||||||
Constructs a gml:Point element using the given Point coordinates for the
nested gml:pos element.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Declares the set of expected Extension types for an ExtensionPoint within
the target extension profile.
| |||||||||||
Generates the XML corresponding to this gml point.
| |||||||||||
Returns the suggested extension description with configurable
repeatability.
| |||||||||||
Returns the suggested extension description and is repeatable.
| |||||||||||
Sets the latitude and longitude of the gml:pos element of this Point to the
latitude and longitude coordinates specified.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.data.ExtensionPoint
| |||||||||||
From class
com.google.gdata.data.AbstractExtension
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.google.gdata.data.Extension
| |||||||||||
From interface
com.google.gdata.data.geo.Point
| |||||||||||
Constructs an empty gml:Point element.
Constructs a gml:Point element out of the given lat and lon values. This will construct a gml:pos element to hold the actual values. If the values are null then an empty gml:pos element will be created.
| lat | |
|---|---|
| lon |
Constructs a gml:Point element using the given Point coordinates for the nested gml:pos element. If the point is already a gml:pos, then it will be used directly as the extension, otherwise a gml:pos element will be created as a copy of the given point.
| point |
|---|
Declares the set of expected Extension types for an ExtensionPoint within the target extension profile. The base implementation does not declare any extensions, but can be overridden by specific types of ExtensionPoints that always contain a well-defined set of extensions.
| extProfile | The ExtensionProfile to initialize. |
|---|
Generates the XML corresponding to this gml point.
| w | XML writer |
|---|---|
| extProfile | Extension profile |
| IOException |
|---|
Returns the suggested extension description with configurable repeatability.
| repeatable |
|---|
Returns the suggested extension description and is repeatable.
Sets the latitude and longitude of the gml:pos element of this Point to the latitude and longitude coordinates specified.
| lat | The latitude coordinate of this point. |
|---|---|
| lon | The longitude coordinate of this point. |