mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 08:00:03 +00:00
10 lines
254 B
Plaintext
10 lines
254 B
Plaintext
import lombok.experimental.FieldNameConstants;
|
|
import lombok.AccessLevel;
|
|
|
|
@FieldNameConstants
|
|
public class FieldNameConstantsExample {
|
|
private final String iAmAField;
|
|
private final int andSoAmI;
|
|
@FieldNameConstants.Exclude private final int asAmI;
|
|
}
|