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 an abstract test class that has two type parameters. I need to make an instance of one of the types at some point, so I defined an abstract method to get the required class.

I doc = getInputDocumentClass().newInstance();

How can I implement the abstract method Class<T1<T2>> getInputDocumentClass() in a concrete subclasses?

To return the class literal for T1 is not enough:

@Override
public Class<T1<T2>> getInputDocumentClass() {
    return T1.class;
}

cannot convert from Class<T1> to Class<T1<T2>>

There are no parameterized class literals due to type erasure.

So how can I satisfy the compiler in this case?

share|improve this question
1  
are you literally referring to the getClass() method defined by Java's Object class or some generic getSomeClass() method? The getClass() method cannot be overwritten, whereas any other method can be solved by casting. An some more code would help explain what you are trying to do. – ArtB Aug 2 '11 at 13:15
Oh, it's one of the messy cases. Bleah. – Donal Fellows Aug 2 '11 at 13:26
@ArtB No, just my own method. I'll edit the question to show my intent. – prasopes Aug 2 '11 at 13:26

1 Answer

up vote 1 down vote accepted
@SuppressWarnings("unchecked")
public Class<List<Integer>> getInputDocumentClass() {
    return (Class)List.class;
}
share|improve this answer

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.