Currently have this implementation:
static Map s_AvailableGameTables = Collections.synchronizedMap(new TreeMap<Integer,Table>());
How can I iterate over all it’s content from the start to the end like an array?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to iterate over the entries (key-value pairs in the map):