mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 04:22:16 +00:00
23 lines
683 B
Java
23 lines
683 B
Java
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();
|
|
}
|
|
} |