I am defining some the components of the ICCID in the field of telecommunications. Show my code:
@Data
public class IssuerIdentificationNumber {
private MajorIndustryIdentifier mii;
private CountryCallingCode countryCode;
private IssuerIdentifier issuerId;
}
Lombok generated the getMii() method for me, but I want two equivalent getter methods named getMII() and getMajorIndustryIdentifier(). Is there a way to make Lombok do this?
like:
...
@Getter(methodNames = ["getMII", "getMajorIndustryIdentifier"])
private MajorIndustryIdentifier mii;
...
Thanks in advance :)