|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.geotools.renderer.array.PointIterator
org.geotools.geometry.array.PointIterator
as part of the port of J2D-renderer to the new GO-1 based API. Note that it is not
possible to mix J2D-renderer classes with GO-1 rendering engine. Migration from
J2D-renderer to the GO-1 API will requires the replacement of all deprecated classes
together. Because the new GO-1 rendering engine is a work in progress, see
GEOT-776 in order to determine
if enough functionalites have been ported for yours need.
It?rateur balayant les donn?es d'un tableau PointArray
. Cet it?rateur est obtenu par
un appel ? PointArray.iterator(int)
. Le balayage se fait g?n?ralement par des appels aux
aux m?thodes nextX()
et nextY()
, qui retournent les donn?es sous forme de nombres
r?els float
. Toutefois, ces m?thodes nextX()
d'abord, suivit de nextY()
. Tout manquement ? cette r?gle (par
exemple appeller nextX()
deux fois de suite) peut produire des r?sultats erron?es.
Constructor Summary | |
protected |
PointIterator()
Deprecated. Constructeur par d?faut. |
Method Summary | |
java.lang.Object |
clone()
Deprecated. Retourne une copie conforme de cet it?rateur. |
abstract boolean |
hasNext()
Deprecated. Indique si les m?thodes next() peuvent retourner d'autres donn?es. |
java.lang.Object |
next()
Deprecated. Retourne la valeur du point courant dans un objet Point2D ,
puis avance au point suivant. |
abstract float |
nextX()
Deprecated. Retourne la valeur de la longitude courante. |
abstract float |
nextY()
Deprecated. Retourne la valeur de la latitude courante, puis avance au point suivant. |
void |
remove()
Deprecated. Op?ration non-support?e. |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
protected PointIterator()
Method Detail |
public abstract boolean hasNext()
next()
peuvent retourner d'autres donn?es.
hasNext
in interface java.util.Iterator
public abstract float nextX()
nextY()
.
public abstract float nextY()
nextX()
.
public java.lang.Object next()
Point2D
,
puis avance au point suivant. Cette m?thode combine un appel de
nextX()
suivit de nextY()
.
next
in interface java.util.Iterator
public final void remove()
remove
in interface java.util.Iterator
public final java.lang.Object clone()
clone
in interface org.opengis.util.Cloneable
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |