Removed AvoidStarImport Rule

Added JavaDocType Rule
This commit is contained in:
Mudit Porwal
2017-03-22 01:16:01 +08:00
parent 175e9f58c1
commit 09585c3874
105 changed files with 577 additions and 284 deletions

View File

@ -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();

View File

@ -23,7 +23,9 @@
package com.iluwatar.fluentinterface.app;
import org.junit.Test;
/**
* Application Test Entry
*/
public class AppTest {
@Test