blob: 053a6e7ae3ac997fd78f438648c7c9b0a252fb94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import lombok.experimental.FieldNameConstants;
import lombok.AccessLevel;
public @FieldNameConstants(onlyExplicitlyIncluded = true,asEnum = true,innerTypeName = "TypeTest") class FieldNameConstantsEnum {
public @java.lang.SuppressWarnings("all") enum TypeTest {
iAmADvdPlayer(),
$dontSkipMe(),
alsoDontSkipMe(),
private @java.lang.SuppressWarnings("all") TypeTest() {
super();
}
<clinit>() {
}
}
@FieldNameConstants.Include String iAmADvdPlayer;
@FieldNameConstants.Include int $dontSkipMe;
static @FieldNameConstants.Include double alsoDontSkipMe;
int butSkipMe;
<clinit>() {
}
public FieldNameConstantsEnum() {
super();
}
}
|