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

@ -22,6 +22,9 @@
*/
package com.iluwatar.monad;
/**
* Enumeration of Types of Sex
*/
public enum Sex {
MALE, FEMALE
}

View File

@ -22,6 +22,9 @@
*/
package com.iluwatar.monad;
/**
* User Definition
*/
public class User {
private String name;

View File

@ -24,6 +24,9 @@ package com.iluwatar.monad;
import org.junit.Test;
/**
* Application Test
*/
public class AppTest {
@Test

View File

@ -30,6 +30,9 @@ import org.junit.rules.ExpectedException;
import java.util.Objects;
/**
* Test for Monad Pattern
*/
public class MonadTest {
@Rule