The getter is getMode while the setter is setMdmMode.
|
public void setMdmMode(MdmModeEnum theMdmMode) { |
|
myMdmMode = theMdmMode; |
|
} |
|
|
|
@Override |
|
public MdmModeEnum getMode() { |
|
return myMdmMode; |
|
} |
This breaks Kotlin 'synthetic property' interop with Java
https://kotlinlang.org/docs/java-interop.html#getters-and-setters
I will open a PR to rename the setter (as the getter is defined in the IMdmSettings interface)