When I build Core-NLP on my own, I get the following message:

incompatible types; no instance(s) of type variable(s) VALUE exist so that VALUE conforms to Map<Integer,String>

The offending line:

Map<Integer,String> roleMap = ((CoreLabel)t1.label()).get(CoreAnnotations.CoNLLSRLAnnotation.class);

The offending function:

  @SuppressWarnings("unchecked")
  public <VALUE, KEY extends Key<CoreMap, VALUE>>
    VALUE get(Class<KEY> key) {
    for (int i = size; i > 0; ) {
   if (keys[--i] == key) {
    return (VALUE)values[i];
  }
}
    return null;
}

I really have no clue how to fix this. I'm trying to build CoreNLP with Maven so I can use it easily in my project. Ideas?

link|improve this question

What Java compiler are you using? – Matthew Flaschen Oct 23 '11 at 1:48
Why is the offending line not in the offending function? – jayunit100 Oct 23 '11 at 1:53
@MatthewFlaschen Maven – simplyianm Oct 23 '11 at 3:17
@simplyianm, Maven is not a compiler. Which javac are you using? – Matthew Flaschen Oct 23 '11 at 3:21
@MatthewFlaschen I had a feeling that was going to make me look stupid :) I don't know, it's the one that comes default with Netbeans. I tried doing javac -version in the command prompt, but nothing came up. – simplyianm Oct 23 '11 at 3:28
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.