More on Enums
Please visit Enums blog before venturing further into this article. Singleton Implementation Enums are by default thread-safe and provide an easy[…]
Read moreAmplify your java knowledge with javagyansite
Please visit Enums blog before venturing further into this article. Singleton Implementation Enums are by default thread-safe and provide an easy[…]
Read moreJava enum type is a special type of class for creating a collection of constants. Please note that enums implicitly[…]
Read moreThreadLocal is used to create thread-scope variables. ThreadLocal class is used for creating thread-local variables which can only be read and[…]
Read moreLambda expression was introduced in Java 8. Java lambda expressions are Java’s first step into functional programming. A lambda expression[…]
Read moreBefore Java 8, interfaces could have only public abstract methods. It was not possible to add new functionality to the[…]
Read moreWe can combine several lists of values into a single list of values using flatMap(). It’s called flatMap() because it[…]
Read moreStringJoiner was introduced in Java 8. It joins String separated by a delimiter, starting with a supplied prefix and ending[…]
Read moreComparing the Capabilities Read more on Spring
Read moreRelated Article : Java EE vs Spring
Read moreBefore jumping into Java EE, let us first understand Java SE and Java ME. Java SE (formerly J2SE) stands for[…]
Read more