How To Use @Getter And @Setter Annotations With Project Lombok
@Getter and @Setter annotations enable you avoid having to manually write getter and setter methods in Java classes. Read More
Last updated: 4 years ago
How To Install Project Lombok In Apache Netbeans
With project lombok in our IDE, we're able to get rid of alot of boilerplate java code by adding 'lombok specific annotations' i.e @Getter, @Setter, etc. Read More
Last updated: 4 years ago
Sequential Data Processing With Streams
We'll be introducing the Stream API which is an exciting feature that represents a new way of processing data in Java 8. We'll also talk about Iterator
Last updated: 4 years ago
Functional Interfaces Before Java 8
There were plenty of interfaces with a single abstract method even before Java 8. Functional interfaces provide target types for lambda expressions and method references. Read More
Last updated: 4 years ago
Writing Your First Lambda Expression For Beginners In Java
Lambda Expressions are commonly used as a more compact alternative to anonymous classes. LambdaExpressions can also come in handy when you intend to pass a particular behavior to different parts of your code. Read More
Last updated: 4 years ago