Hi Guys, I am just wondering what kind of parameter I have to pass for java.lang.String? I am assuming that I can pass String value and in this program I am passing 'Happy Valentines Day'. Is it write way to pass the string value??
Code:
import java.util.*;
public class KeywordManager {
public static java.util.List identifyKeywords(java.lang.String searchTextBlock){
//
}
public static void main (String[] args){
KeywordManager ks = new KeywordManager();
ks.identifyKeywords('Happy Valentines Day');
}
}