Thursday, April 21, 2016

Programming standards

1.Creating a enum of constants.
   public enum PlanStatus {
AVAILABLE, INVALIDATED;

public String toString(){
return this.name();
}
   }

and to access them use like PlanStatus.AVAILABLE.

2.

java-8-streams-map-examples

package com.mkyong.java8; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Arrays; import java.util.List; im...