blob: 876bb85344269316cdd6f27ab0d77f28b30575d2 (
plain)
1
2
3
4
5
6
7
8
9
|
// version 14:
import lombok.experimental.FieldNameConstants;
import lombok.AccessLevel;
@FieldNameConstants(level = AccessLevel.PACKAGE)
public record FieldNameConstantsOnRecord(String iAmADvdPlayer, int $skipMe, @FieldNameConstants.Exclude int andMe, String butPrintMePlease) {
static double skipMeToo;
}
|