Posts

Showing posts from March 5, 2019

Olympische Sommerspiele 2016/Teilnehmer (Trinidad und Tobago)

Image
TTO — — 1 Trinidad und Tobago nahm an den Olympischen Spielen 2016 in Rio de Janeiro teil. Es war die insgesamt 17. Teilnahme an Olympischen Sommerspielen. Das Trinidad and Tobago Olympic Committee nominierte 32 Athleten in 8 Sportarten. Inhaltsverzeichnis 1 Teilnehmer nach Sportarten 1.1 Boxen 1.2 Judo 1.3 Leichtathletik 1.4 Radsport 1.4.1 Bahn 1.5 Rudern 1.6 Schwimmen 1.7 Segeln 1.8 Turnen 1.8.1 Gerätturnen 2 Weblinks 3 Einzelnachweise Teilnehmer nach Sportarten | Boxen | Athleten Wettbewerb 1. Runde Achtelfinale Viertelfinale Halbfinale Finale Rang Gegner Ergebnis Gegner Ergebnis Gegner Ergebnis Gegner Ergebnis Gegner Ergebnis Männer Nigel Paul Superschwergewicht über 91 kg Freilos Efe Ajagba Nigeria KO ausgeschieden Judo | Athleten Wettbewerb [1] 1. Runde 2. Runde Viertelfinale Halbfinale / Trostrunde Finale / Platz

How to copy ArrayList Object in HashMap

Image
-4 I have a task given as suppose there is a list of options a to z. A user can select any of these options so for each option if the user clicks we should have 5 columns to that specific option as a-col1,a-col2,a-col3....a-col5 and similarly for other options as well. ArrayList<Object> columns= {col1,col2,col3,col4,col5}; HashMap<Integer,columns> hm=new HashMap<Integer,columns>(); or HashMap<Integer,Object> hm=new HashMap<Integer,Object>(); The problem is how should i add this list columns to my Object of hashmap like for(int i=0;i<options.length;i++) hm.put(i,???Object.add()) or hm.put(i,???Object.add(columns. get())); Cant figure so as to how to add for each index al