Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a method with the following signiture:

public <T> T encode(String[] data, Class<T> type)

Whenever I invoke it, I get a compile error such as:

The method encode(String[], Class<T>) is not applicable for the arguments (String, Class<Integer>)"

In this case when I pass it Integer.class. (It gives a similar errors for any Object.class)

From what I have seen with generic methods, this should work and use Integer as T. What am I doing wrong?

share|improve this question
can you post the invocation code? – GoingTharn Jul 5 '11 at 16:55

1 Answer

up vote 3 down vote accepted

Your error message says it all; you are trying to pass in a String and your method expects a String array.

The method encode(String[], Class) is not applicable for the arguments (String, Class)

share|improve this answer
ah yes that would be it. – jonbooz Jul 5 '11 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.