Uses of Class
edu.ull.cgunay.utils.BreakOutOfIterationException

Packages that use BreakOutOfIterationException
edu.ull.cgunay.utils General Java utilities, specifically application independent high level iteration facilities based on the Java 2 Collections technologies.  
 

Uses of BreakOutOfIterationException in edu.ull.cgunay.utils
 

Methods in edu.ull.cgunay.utils that throw BreakOutOfIterationException
 void Iteration.loop()
          Iterates on collection set by the constructor.
 void Iteration.loop(Collection c)
          Iterates on c with the Task given in this class.
static void Iteration.loop(Iterator i, Task t)
          Loop on Iterator values calling Task.
static void Iteration.loop(Object[] array, Task t)
          Loop on Object[] values calling Task.
 void Iteration.loop(Object[] array)
          Convenience method with Collection parameter, calls another loop() method.
static void Iteration.loop(Collection c, Task t)
          Convenience method with Collection parameter, calls another loop() method.