import java.util.function.Function; class ChoiceBox { static { ChoiceBox confParamField1 = new ChoiceBox<>("", p -> p.getName()); ChoiceBox confParamField2 = new ChoiceBox("", p -> p.getName()); } public ChoiceBox(T... options) {} public ChoiceBox(String caption, Function itemCaption) {} public static class Item { public String getName() { return null; } } }