JAVA TO KOTLIN NULL SAFETY
@NotNull
private String notNullableString = "bar";
@NotNull
public String getNotNullableString() {
return notNullableString;
}
public void setNotNullableString(@NotNull String notNullableString) {
this.notNullableString = notNullableString;
}