Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6993201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:44:04+00:00 2026-05-27T19:44:04+00:00

I have a method with this interface: public <A extends Message, B extends Message>

  • 0

I have a method with this interface:

public <A extends Message, B extends Message> MessageConverter<A, B>
    getDefaultConverterFor(Class<A> inputClass, Class<B> outputClass);  

where the idea is that you have an Message of type A that you want to convert into an Message of type B, and you want to get a converter to do that from a repository of registered converters available. Unfortunately, I’m having huge trouble getting the types at either end of this to work as I expect.

More specifically, I’m trying to do this:

public <M extends Message> Message convert(M m)
{
    MessageConverter<M, DictMessage> converter = 
        getDefaultConverterFor(m.getClass(), DictMessage.class);

    return converter.convert(m);                
}

(i.e. take a message of any type and convert it into a DictMessage) but it gives me a compile error on the getDefaultConverter line:

Type mismatch: cannot convert from MessageConverter<capture#1-of ? extends Message,DictMessage> to MessageConverter<Message,DictMessage>".

I’m not even sure why this happens, let alone how to fix it. I’d imagine it’s something to do with the class returned by getClass not quite matching up with M, but I don’t really know. I could believe that it’s possible that this is something that actually just doesn’t work, but I can’t think of any particular examples that break it… Thoughts?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:44:04+00:00Added an answer on May 27, 2026 at 7:44 pm

    I have had a problem with Object.getClass() returning Class<?> for some time. The compiler doesn’t know that m.getClass() is Class<M> but you can fix that with a cast.

    @SuppressWarnings("unchecked")
    MessageConverter<M, DictMessage> converter =
            getDefaultConverterFor((Class<M>) m.getClass(), DictMessage.class);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this simple interface/class: public abstract class Message {} public class Message1 extends
I have some classes that look like this: MODEL public abstract class BaseEntity<O extends
I have a method that looks like this public static <T extends MyClass, X
Suppose I have this interface public interface IFoo { ///<summary> /// Foo method ///</summary>
I have a method on an interface that looks like this and I want
I have this method in my db class public function query($queryString) { if (!$this->_connected)
I have the following definition: public interface MessageResponseHandler<T extends MessageBody> { public void responsed(Message<T>
I have a generic PostProcessor interface that looks like this: public interface PostProcessor<T> {
I have an interface called Dictionary which has a method insert() . This interface
I have this method: public bool CanExecute() And after 70 commits, I added an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.