blob: 674cb7f15a6dc03d962d4ae40d558b24995c603e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//CONF: lombok.fieldNameConstants.uppercase = true
import lombok.experimental.FieldNameConstants;
import lombok.AccessLevel;
@FieldNameConstants(level = AccessLevel.PACKAGE)
public class FieldNameConstantsUppercased {
String iAmADvdPlayer;
int $skipMe;
static double skipMeToo;
@FieldNameConstants.Exclude int andMe;
String butPrintMePlease;
}
|