I've been searching around for this but I can't seem to find a solution that works. I currently have a hashmap
HashMap<String,Float> map = new HashMap<String,Float>();
Now I want to access just the key part of the hashmap which is a column of strings. And I would like to create a new array of Strings from those values. If I were to just convert them:
map.getKey().toArray();
That would give the float values too in it's array.. So how do I do this?