Não é possível converter de String para ObservableValue <>

Estou criando um programa para gerenciar e mostrar dados sobre aeroportos, seus voos e assim por diante. O fato é que eu tenho um tableView (em javafx) com várias tableColumns e quero mostrar algumas informações (destino, origem, empresa, etc.) em cada coluna, então digitei isto:

@FXML
private TableColumn<Flight, String> destinoCol;

@FXML
private TableColumn<Flight, String> numCol;

@FXML
private MenuButton aeropuerto;

@FXML
private MenuButton tipo;

@FXML
private Button filtrar;

@FXML
private TableColumn<Flight, LocalTime> horaCol;

@FXML
private Button este;

@FXML
private DatePicker fecha;

@FXML
private TableColumn<Flight, String> origenCol;

@FXML
private Label retrasoLabel;

@FXML
private ImageView companiaImg;

@FXML
private VBox detalles;

@FXML
private Button todos;

@FXML
private ImageView avionImg;

@FXML
private Label tipoLabel;

private mainVuelos m;
private List<Airport> aeropuertos;
private Data data;
@FXML
void initialize() {
    data = Data.getInstance();
    aeropuertos = data.getAirportList();
    List<MenuItem> ItemAeropuertos = new LinkedList<MenuItem>();
    for (int i = 0; i < aeropuertos.size(); i++) {
        MenuItem item = new MenuItem(aeropuertos.get(i).getName());
        item.setOnAction((event) -> cambiarAer(event));
        ItemAeropuertos.add(item);
    }
    aeropuerto.getItems().setAll(ItemAeropuertos);
    destinoCol.setCellValueFactory(cellData -> cellData.getValue().getDestiny());
}

O método getDestiny (), como diz o retorno do destino de um vôo específico como uma String, então obviamente não posso usar a última instrução, diz "não é possível converter de String para ObservableV, alue", mas realmente não sei como resolver para poder mostrar os destinos nessa coluna. Obrigado a todos.

questionAnswers(2)

yourAnswerToTheQuestion