Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I get the key as well as the value in an apex for loop?

I have a map object which stores <Id, String> where the Id is a contact Id, and the String is a generated email message.

I have successfully looped through the map and have been able to pull out the values (The String portion) as I iterate through the map.

What I would like to be able to do is also grab the key when I grab the value. This is very simple to do in most languages, but I can't seem to find out how to do it in apex.

This is what I have right now:

Map<Id,String> mailContainer = new Map<Id,String>{};

for(String message : mailContainer.values())
{

    // This will return my message as desired
    System.debug(message);

}

What I would like is something like this:

for(String key=>message : mailContainer.values())
{

    // This will return the contact Id
    System.debug(key);

    // This will return the message
    System.debug(message);

}

Thanks in advance!

like image 337
VictorKilo Avatar asked Oct 01 '12 21:10

VictorKilo


1 Answers

Iterate over the keys instead of the values:

for (Id id : mailContainer.keySet())
{
    System.debug(id);
    System.debug(mailContainer.get(id));
}
like image 57
Adam Butler Avatar answered Nov 18 '22 22:11

Adam Butler