Introduction To Java Streams And Functional Programming

We will cover alot of functional features in Java 8 & 9 including the stream library. New Articles will be added once ready every week until this list is complete. Read More

Last updated: 4 years ago

How To Use @Value Annotation With Project Lombok In Java Applications

@Value is frequently used when creating Immutable classes. Read More

Last updated: 4 years ago

How To Use @Data Annotation With Project Lombok In Java Applications

@Data is an "all-in-one" special annotation that groups functionalities from multiple annotations namely:- Read More

Last updated: 4 years ago

How To Use @AllArgsConstructor Annotation With Project Lombok In Java Applications

@AllArgsConstructor annotation automatically generates a constructor with a parameter for each field in your class. Read More

Last updated: 4 years ago

How To Use @FieldDefaults Annotation With Project Lombok In Java Applications

@FieldDefaults annotation enables you to avoid having to manually write access modifiers for your object fields or an enum. Read More

Last updated: 4 years ago