| java.lang.Object | |||
| ↳ | com.google.gdata.data.AbstractExtension | ||
| ↳ | com.google.gdata.data.ValueConstruct | ||
| ↳ | com.google.gdata.data.geo.impl.GeoRssBox | ||
A georss:box that contains 2 points, like:
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | NAME | ||||||||||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| lowerLeft | |||||||||||
| upperRight | |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.data.ValueConstruct
| |||||||||||
From class
com.google.gdata.data.AbstractExtension
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an empty georss:box element.
| |||||||||||
Constructs a georss:box element with the given set of points.
| |||||||||||
Constructs a georss:box element with the given bounding points.
| |||||||||||
Constructs a georss:box element by copying the data from the given box.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the suggested extension description with configurable
repeatability.
| |||||||||||
Returns the suggested extension description and is repeatable.
| |||||||||||
Gets the lower left point.
| |||||||||||
Gets the upper right point.
| |||||||||||
Sets the coordinates of this box.
| |||||||||||
Sets the value.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.data.ValueConstruct
| |||||||||||
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 georss:box element.
Constructs a georss:box element with the given set of points.
| lowerLat | |
|---|---|
| lowerLon | |
| upperLat | |
| upperLon |
Constructs a georss:box element with the given bounding points.
| lowerLeft | |
|---|---|
| upperRight |
Constructs a georss:box element by copying the data from the given box.
Will call the GeoRssBox(Point, Point) constructor with the parts
of the passed in box, or with nulls if the box itself is null.
| box |
|---|
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. |
Sets the value. Subclasses can override this method to do additional validation of the value.
| v | New value for the value construct or null to reset. |
|---|