mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-26 17:55:36 +00:00
8 lines
221 B
Plaintext
8 lines
221 B
Plaintext
public class FieldNameConstantsExample {
|
|
public static final String FIELD_I_AM_A_FIELD = "iAmAField";
|
|
static final String FIELD_AND_SO_AM_I = "andSoAmI";
|
|
|
|
private final String iAmAField;
|
|
private final int andSoAmI;
|
|
}
|