JOELib
Computational Chemistry Package

joelib.util.iterator
Class ConformerIterator

java.lang.Object
  extended byjoelib.util.iterator.VectorIterator
      extended byjoelib.util.iterator.ConformerIterator
All Implemented Interfaces:
Cloneable, Iterator

public class ConformerIterator
extends VectorIterator

Gets an iterator over all conformers in a molecule.

 ConformerIterator cit = mol.conformerIterator();
 double conformer[];
 while (cit.hasNext())
 {
   conformer = cit.nextConformer();

 }
 

See Also:
VectorIterator, JOEMol.conformerIterator()
Author:
Jörg Kurt Wegner (wegnerj at informatik.uni-tuebingen.de) at the Department of Cognitive Systems
CVS Version:
Revision: 1.7Date: 2004/07/25 20:43:29source code (CVS head)
License:
Licensed under the terms of the GNU General Public License (GPL).

Constructor Summary
ConformerIterator(Vector v)
           
 
Method Summary
 double[] nextConformer()
           
 
Methods inherited from class joelib.util.iterator.VectorIterator
actual, actualIndex, clone, hasNext, insert, next, remove, reset, setActualIndex
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConformerIterator

public ConformerIterator(Vector v)
Method Detail

nextConformer

public double[] nextConformer()

JOELib
Computational Chemistry Package

Comments and Questions? mail to J.K.Wegner