Skip to content

Instantly share code, notes, and snippets.

@vladthelittleone
Created January 25, 2018 17:43
Show Gist options
  • Select an option

  • Save vladthelittleone/cbbce5e5d426782e1b92d2ab5861076f to your computer and use it in GitHub Desktop.

Select an option

Save vladthelittleone/cbbce5e5d426782e1b92d2ab5861076f to your computer and use it in GitHub Desktop.
Lombok usage.
@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