mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-25 21:58:35 +00:00
9 lines
227 B
Plaintext
9 lines
227 B
Plaintext
import lombok.experimental.FieldNameConstants;
|
|
|
|
@FieldNameConstants
|
|
public class FieldNameConstantsExample {
|
|
private final String iAmAField;
|
|
private final int andSoAmI;
|
|
@FieldNameConstants.Exclude private final int asAmI;
|
|
}
|