私はこの方法を持っています:
public User findById(String name)
{
for (User u : list)
{
if (u.getFirstName() == name)
{
return u;
}
}
return null; // or empty User
}
見つけたユーザーを印刷できるように、ウィンドウ クラスでメソッドをプログラムするにはどうすればよいですか?
これは私が得たものです。(私はかなり離れていると思います)
public void findCustomer()
{
String firstname = findCustomerField.getText();
if(!firstname.equals(""))
{
String result = list.findById(firstname);
outputText.setText(result);
}
}