blob: 0f99133d09e8bc787c2691a2b1c6f668c9eb0fc5 (
plain)
1
2
3
4
5
6
7
8
9
|
import lombok.experimental.FieldNameConstants;
import lombok.AccessLevel;
@FieldNameConstants
public class FieldNameConstantsWeird {
@FieldNameConstants(level = AccessLevel.NONE)
String iAmADvdPlayer;
String X;
}
|