Hi Everyone,
Is it possible to specify a type to a generic variable/method return type.
Example,
1. Produce a method signature : public List<String> getAll() {}
2. Declare a varialbel as : List<String> values = new
ArrayList<String>();
--
Yogesh Dubey