Home SALESFORCEAPEX How to Convert from SET to LIST Using Apex Class

How to Convert from SET to LIST Using Apex Class?

Using below code we can convert from SET to LIST,

Pass your set values in this method ‘convertToList’ and you can get the return value of List.

[java]

public void emailList() {

set<string> setEmailAddresses = new set<string>();
setEmailAddresses.clear();
if(bccid != null && bccid != ”) {
setEmailAddresses.addAll(bccid.split(‘[,;]’));
}
if(setEmailAddresses.size() > 0){
list<string> emailId = new list<string>();
emailId = convertToList(setEmailAddresses);
}
}

public list<string> convertToList(set<string> setToConvert) {
list<string> lstString = new list<string>();
lstString.addAll(setToConvert);
return lstString;
}

[/java]

You may also like

Leave a Comment