I've got following method:
public <T> execute(HttpRequest request) {
...
// in parseAs i have to pass Class<T> how can I instantiate it from T?
request.execute().parseAs(classT);
}
PS: parseAs is method from google http client library.
|
I've got following method:
PS: parseAs is method from google http client library.
| |||
|
feedback
|
|
You cannot with those parameters. Java's generics use something called type erasure - basically all those However, your The solution is to add a
| |||||||||||
feedback
|