Java GET JCOMBOBOX VALUE

JComboBox<Object> jcb = new JComboBox<Object>();
Object selected = jcb.getSelectedItem();
This is my name