How to create custom annotations in Java
Ever since Java started supporting annotations, most of the frameworks embraced annotations and now annotations are the best way to …
Tutorials, Samples and Best practices covering Java Language
Ever since Java started supporting annotations, most of the frameworks embraced annotations and now annotations are the best way to …
Java 12 has introduced a nice feature to represent numbers in its human readable format depending on the country and …
Read moreJava Compact Number Instance -How to format numbers in human readable format
Method references are special representation of lambda expressions. In fact they are mostly used to represent lambda expressions in a …
Java 8 is the most important releases that happened in java since the introduction of generics in Java 5. This …
Java Streams API, provides functional-style operations on streams of elements. Streams provide methods for filtering, transforming and aggregating data over …
Default methods enables us to add new functions to our existing interfaces. This ensures binary compatibility with code written for …