Removed AvoidStarImport Rule
Added JavaDocType Rule
This commit is contained in:
@ -27,6 +27,7 @@ import java.util.Iterator;
|
||||
/**
|
||||
* This class is used to realize LazyFluentIterables. It decorates a given iterator. Does not
|
||||
* support consecutive hasNext() calls.
|
||||
* @param <E> Iterable Collection of Elements of Type E
|
||||
*/
|
||||
public abstract class DecoratingIterator<E> implements Iterator<E> {
|
||||
|
||||
@ -43,7 +44,7 @@ public abstract class DecoratingIterator<E> implements Iterator<E> {
|
||||
|
||||
/**
|
||||
* Precomputes and saves the next element of the Iterable. null is considered as end of data.
|
||||
*
|
||||
*
|
||||
* @return true if a next element is available
|
||||
*/
|
||||
@Override
|
||||
@ -54,7 +55,7 @@ public abstract class DecoratingIterator<E> implements Iterator<E> {
|
||||
|
||||
/**
|
||||
* Returns the next element of the Iterable.
|
||||
*
|
||||
*
|
||||
* @return the next element of the Iterable, or null if not present.
|
||||
*/
|
||||
@Override
|
||||
@ -71,7 +72,7 @@ public abstract class DecoratingIterator<E> implements Iterator<E> {
|
||||
/**
|
||||
* Computes the next object of the Iterable. Can be implemented to realize custom behaviour for an
|
||||
* iteration process. null is considered as end of data.
|
||||
*
|
||||
*
|
||||
* @return the next element of the Iterable.
|
||||
*/
|
||||
public abstract E computeNext();
|
||||
|
@ -23,7 +23,9 @@
|
||||
package com.iluwatar.fluentinterface.app;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Application Test Entry
|
||||
*/
|
||||
public class AppTest {
|
||||
|
||||
@Test
|
||||
|
Reference in New Issue
Block a user