net.sourceforge.cilib.neuralnetwork.foundation
Interface NeuralNetworkDataIterator

All Superinterfaces:
Cloneable, Serializable
All Known Implementing Classes:
LinearDataIterator

public interface NeuralNetworkDataIterator
extends Cloneable

TODO: Complete the javadoc.

Author:
stefanv

Method Summary
 int currentPos()
           
 NeuralNetworkDataIterator getClone()
          Create a cloned copy of the current object and return it.
 boolean hasMore()
           
 void next()
           
 void reset()
           
 int size()
           
 NNPattern value()
           
 

Method Detail

next

void next()

hasMore

boolean hasMore()

reset

void reset()

value

NNPattern value()

size

int size()

currentPos

int currentPos()

getClone

NeuralNetworkDataIterator getClone()
Description copied from interface: Cloneable
Create a cloned copy of the current object and return it. In general the created copy will be a deep copy of the provided instance. As a result this operation an be quite expensive if used incorrectly.

Specified by:
getClone in interface Cloneable
Returns:
An exact clone of the current object instance.
See Also:
Object.clone()


Copyright © 2009 CIRG. All Rights Reserved.