blob: d56bb280fb2fcefc4facdee86cf9f34ee2ba9f32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import lombok.experimental.FieldNameConstants;
import lombok.AccessLevel;
@FieldNameConstants(onlyExplicitlyIncluded = true, asEnum = true, innerTypeName = "TypeTest")
public class FieldNameConstantsEnum {
@FieldNameConstants.Include
String iAmADvdPlayer;
@FieldNameConstants.Include
int $dontSkipMe;
@FieldNameConstants.Include
static double alsoDontSkipMe;
int butSkipMe;
}
|