mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 14:22:19 +00:00
14 lines
384 B
Java
14 lines
384 B
Java
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;
|
|
}
|