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

  • Home
  • SEARCH
  • 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 522575
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:22:06+00:00 2026-05-13T08:22:06+00:00

Why isn’t a Map<String,List<SomeBean>> castable to Map<String,List<?>> ? What I’m doing now is this:

  • 0

Why isn’t a Map<String,List<SomeBean>> castable to Map<String,List<?>>?

What I’m doing now is this:

Map<String, List<SomeBean>> fromMap = new LinkedHashMap<String, List<SomeBean>>();

/* filling in data to fromMap here */

Map<String,List<?>> toMap = new LinkedHashMap<String, List<?>>();
for (String key : fromMap.keySet()) {
    toMap.put(key, fromMap.get(key));
}

In my opinion there should be a way around this manual transformation, but I can’t figure out how. Any Ideas?

  • 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-13T08:22:07+00:00Added an answer on May 13, 2026 at 8:22 am

    The cast is invalid because in Map<String,List<?>> you can put List<String> and List<WhatEver>, but not in Map<String, List<SomeBean>>.

    For instance:

        //List<SomeBean> are ok in both lists
        fromMap.put("key", new ArrayList<SomeBean>());
        toMap.put("key", new ArrayList<SomeBean>());
    
        //List<String> are ok in Map<String,List<?>>, not in Map<String, List<SomeBean>>
        fromMap.put("key", new ArrayList<String>()); //DOES NOT COMPILE
        toMap.put("key", new ArrayList<String>());
    

    To simplify your code, you may use the appropriate constructor to simplify your code:

        Map<String, List<SomeBean>> fromMap = new LinkedHashMap<String, List<SomeBean>>();
        Map<String,List<?>> toMap = new LinkedHashMap<String, List<?>>(fromMap);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 514k
  • Answers 514k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer $('select#xyz option:not(:selected)'); or $('#mySelect option').not(':selected'); May 16, 2026 at 6:13 pm
  • Editorial Team
    Editorial Team added an answer Well value types are not supported. Implication and the reason… May 16, 2026 at 6:13 pm
  • Editorial Team
    Editorial Team added an answer it means the a tcp service is hosted on a… May 16, 2026 at 6:13 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

Isn't that an inconsistent behavior? (PHP 5.2.6) <?php $a = new SimpleXMLElement('<a/>'); $a->addAttribute('b', 'One
Isn't there a way with Hibernate to return a list of (primitive) values from
Isn't this a client side control? What will happen if the user has disabled
Isn't for example this supposed to go to the server root on a site
This isn't much of an issue with MySQL per-se. The Full Story I'm writing
This isn't about a side-by-side technical comparison, rather about how to think in jQuery
Although I know this isn't very efficient, I need to get this working fast
Isn't the use of delegates to help with some asynchronous cases? I tried the
Isn't it easily possible to construct a PRNG in such a fashion? Why is
Isn’t a class with only static members a kind of singleton design pattern? Is

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.