How To Use @NonNull Annotation With Project Lombok In Java Applications
@NonNull annotation enables you to avoid having to manually write code to check if method or constructor parameters are null. Read More
Last updated: 4 years ago
How To Use @ToString Annotation With Project Lombok
@ToString annotation enables you to avoid having to manually write a toString() method while inspecting fields for your objects. Read More
Last updated: 4 years ago
How To Use @EqualsAndHashCode Annotation With Project Lombok
@EqualsAndHashCode annotation enables you to avoid having to manually write equals() and hashcode() methods in Java classes. Read More
Last updated: 4 years ago
Introduction To Project Lombok
Project Lombok is a Java library that will be plugged into your code editor which automatically generates Java boilerplate byte code for you based on a couple of annotations. Read More
Last updated: 4 years ago
Build Your First Android App (With No Step Skipped)
Have you ever wanted to start learning how to build android applications?. Cool, Simply sit tight and I will take you through all the steps. (With no step skipped.) Read More
Last updated: 4 years ago