Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

lombok get error in extended classes¨

/* 
Lombok doesn't really work that well with Inheritance.
@Builder doesn't work. But you can use @SuperBuilder.
*/
@Getter
@Setter
@AllArgsConstructor
@SuperBuilder
public class Bot extends Player {
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #lombok #error #extended
ADD COMMENT
Topic
Name
2+6 =