| java.lang.Object | |||
| ↳ | com.google.gdata.data.AbstractExtension | ||
| ↳ | com.google.gdata.data.ExtensionPoint | ||
| ↳ | com.google.gdata.data.geo.impl.GmlEnvelope | ||
A gml:Envelope element, this is used to describe a box using the gml version of our geographic information language. An envelope contains an upper and a lower corner.
| 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:Envelope element.
| |||||||||||
Constructs a gml:Envelope with the given coordinates.
| |||||||||||
Constructs a gml:Envelope with the given lower and upper values.
| |||||||||||
Constructs a gml:Envelope by copying from the given box.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Declares the set of expected Extension types for an ExtensionPoint within
the target extension profile.
| |||||||||||
Returns the suggested extension description with configurable
repeatability.
| |||||||||||
Returns the suggested extension description and is repeatable.
| |||||||||||
Sets the coordinates of this box.
| |||||||||||
| Protected Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Checks the attributes to see if there are any problems.
| |||||||||||
|
[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.Box
| |||||||||||
Constructs an empty gml:Envelope element.
Constructs a gml:Envelope with the given coordinates.
| lowerLat | |
|---|---|
| lowerLon | |
| upperLat | |
| upperLon |
Constructs a gml:Envelope with the given lower and upper values. If the given values are already a GmlLowerCorner and a GmlUpperCorner, they will be used direclty as the extensions, otherwise they will be copied. If both points are null an empty point will be created, otherwise if one of them is null then an IllegalArgumentException will be thrown.
| lower | |
|---|---|
| upper |
Constructs a gml:Envelope by copying from the given box. This calls the
GmlEnvelope(Point, Point) constructor with the points in the box,
or with nulls if the box itself is null.
| box |
|---|
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. |
|---|
Returns the suggested extension description with configurable repeatability.
| repeatable |
|---|
Returns the suggested extension description and is repeatable.
Sets the coordinates of this box. Both lowerLeft and upperRight must be non-null or both must be null. Implementations will throw an IllegalArgumentException if one is null and the other non-null.
| lowerLeft | The lower left coordinate. The latitude of this point must be below the latitude of the upper right coordinate. |
|---|---|
| upperRight | The upper right coordinate. The latitude of this point must be above the latitude of the lower left coordinate. |
Checks the attributes to see if there are any problems. Default implementation does nothing, though generally this is discouraged unless there really are no restrictions.
| IllegalStateException |
|---|