Created
January 25, 2018 17:43
-
-
Save vladthelittleone/cbbce5e5d426782e1b92d2ab5861076f to your computer and use it in GitHub Desktop.
Lombok usage.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Getter | |
| @AllArgsConstructor | |
| @EqualsAndHashCode | |
| @ToString | |
| public class Person | |
| { | |
| private final String firstName; | |
| private final String lastName; | |
| private final boolean gender; | |
| private final int age; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment