TextField を作成しました
TextField txtAutocomplete = new TextField();
およびエンティティのリスト
List<Batch> list = BatchService.list();
ControlsFX TextFieldsを使用してオートコンプリート可能にしました
AutoCompletionBinding<Batch> autoCompletionBinding = TextFields.bindAutoCompletion(txtAutocomplete, list);
ユーザーが選択したときに autoCompletionBinding から Batch オブジェクトを取得する方法はありますか?