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 6648467
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:39:30+00:00 2026-05-26T00:39:30+00:00

I have a type converter which converts a string into an object and vice

  • 0

I have a type converter which converts a string into an object and vice versa, the type converter takes the local into account. To implement easily several type converters, e.g. for BigDecimal, Point, and so on I decided to make this interface generic.

public interface TypeConverter<T extends Object>
{ 
    convertToString(Locale locale, T object);
}

This is great to implement as you can be sure you only get the desired T and don’t have to cast or something else.

convertToString(Locale locale, BigDecimal bigDecimal) { ... }

To retrieve the correct converter, I build up a type converter repository where you can access a specific type converter

 typeConverterRepository.getTypeConverter(sourceValue.getType())

The type converter repository than gives us the correct type converter.

Now we want to call this converter:

TypeConverter typeConverter = typeConverterRepository.get( ....)
typeConverter.convertToString(context.getLocale(), sourceValue.getValue());

This leads into an eclipse warning:

The method convertToString(Locale, capture#2-of ?) in the type TypeConverter<capture#2-of ?> is not applicable for the arguments (Locale, Object)

How can this be fixed without using the @SupressWarning annotation? Thank you!

  • 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-26T00:39:31+00:00Added an answer on May 26, 2026 at 12:39 am

    I think the problem lies within your typeConverterRepository pattern.

    Do a typeconverter that looks like the following

    public class TypeConverterRepository {
        public <T> void registerTypeConverter(Class <T> type, TypeConverter<T> typeConverter);
        public <T> TypeConverter<T> getTypeConverter(Class <T> type);
    }
    

    Then you can safley do a

    TypeConverter<MyClass> typeConverter = typeConverterRepository.getTypeConverter(MyClass.class);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have an extension Method which converts an IEnumerable of type Tab into
I have an array of type object which are strings. I would like to
I have a converter which has a couple of input variables (an object and
I have a string serialization utility that takes a variable of (almost) any type
I have a simple converter which checks if an object is equal to whatever
Using C#, I have a List of type Foo, which has a string property
how to convert a String type to a Int i have a tuple and
In my aspx page I have a HTML inputfile type which allows user to
Is it possible to feed an array of image names into code which converts
I have an object which straight forward instance variables. Some are NSString, some are

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.