| |
|
| java.lang.Object org.opengis.pt.PT_Envelope
PT_Envelope | public class PT_Envelope implements Cloneable,Serializable(Code) | | A box defined by two positions.
The two positions must have the same dimension.
Each of the ordinate values in the minimum point must be less than or equal
to the corresponding ordinate value in the maximum point. Please note that
these two points may be outside the valid domain of their coordinate system.
(Of course the points and envelope do not explicitly reference a coordinate
system, but their implicit coordinate system is defined by their context.)
version: 1.01 since: 1.00 author: Martin Daly author: Martin Desruisseaux |
Constructor Summary | |
public | PT_Envelope() Construct an empty envelope. |
Method Summary | |
public Object | clone() Returns a deep copy of this envelope. | public boolean | equals(Object object) Compares the specified object with
this envelope for equality. | public int | hashCode() Returns a hash value for this envelope. | public String | toString() Returns a string representation of this envelope. |
clone | public Object clone()(Code) | | Returns a deep copy of this envelope.
|
equals | public boolean equals(Object object)(Code) | | Compares the specified object with
this envelope for equality.
|
hashCode | public int hashCode()(Code) | | Returns a hash value for this envelope.
This value need not remain consistent between
different implementations of the same class.
|
toString | public String toString()(Code) | | Returns a string representation of this envelope.
The returned string is implementation dependent.
It is usually provided for debugging purposes only.
|
|
|
|