Below statement in if condition is not working, please provide me some solution that how to set selected item for JComboBox
which are populated by ENUM.
public enum EbayContryEnum
{
AT (3),
AU (4),
BE (5),
CA (7),
CH (14),
DE (11),
ES (13),
FR (10),
IE (2),
IT (12),
NL (16),
UK (15),
US (1);
}
for ex:-
if(country.equals("FR"))
{
cbImportCountry.setSelectedItem("FR");
}
But it's not working..
cbImportCountry.setSelectedItem(EbayContryEnum.FR);
cbImportCountry.setSelectedItem(EbayContryEnum.FR);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With