I have a method which takes a variable length string (String...) as parameter. I have a List with me. How can I pass this to the method as argument?>
List
String... equals a String[] So just convert your list to a String[] and you should be fine.
String...
String[]
list