org.shlublu.javax.math
Interface Point

All Superinterfaces:
java.lang.Cloneable
All Known Implementing Classes:
Point3D, Point2D

public interface Point
extends java.lang.Cloneable

Creation : 2002/03/23 Interface dedicated to provide point operations

Since:
0.5

Method Summary
 java.lang.Object clone()
          Return a Point equals() to this one
 boolean equals(java.lang.Object o)
          True if o is not null, from the Point class without beeing from one of its subclass, and have the same coordinates in the same order than this.
 java.lang.String toString()
          Get this point as a string
 

Method Detail

toString

public java.lang.String toString()
Get this point as a string
Overrides:
toString in class java.lang.Object

equals

public boolean equals(java.lang.Object o)
True if o is not null, from the Point class without beeing from one of its subclass, and have the same coordinates in the same order than
this
.
Overrides:
equals in class java.lang.Object

clone

public java.lang.Object clone()
Return a Point
equals()
to this one
Overrides:
clone in class java.lang.Object