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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T05:39:28+00:00 2026-06-09T05:39:28+00:00

I have the following code: @Override public boolean putAll(Multimap<? extends Index, ? extends V>

  • 0

I have the following code:

@Override
public boolean putAll(Multimap<? extends Index, ? extends V> multimap) {
    for (Index index : multimap.keySet()) {
        putAll(index, multimap.get(index));
    }
}

Where multimap.get(index) is a compilation error:

The method get(capture#5-of ? extends Index) in the type Multimap is not applicable for the arguments (Index)

Have I stumbled upon a famous generics gotcha? I don’t quiet see what the problem can be.

Side note: I’m building a class that extends SetMultiMap because I have specific key matching requirements

  • 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-06-09T05:39:29+00:00Added an answer on June 9, 2026 at 5:39 am

    Suppose you put in a Multimap<FooIndex, Integer>. Then you’ve got:

    Multimap<FooIndex, Integer> map = ...;
    Index plainIndex = ...;
    Integer value = map.get(plainIndex);
    

    That’s a type failure, because Multimap.get takes a Key. I suspect you need to make this method generic:

    @Override
    public <Key extends Index> boolean putAll(Multimap<Key, ? extends V> multimap) {
        for (Key index : multimap.keySet()) {
            putAll(index, multimap.get(index));
        }
    }
    

    (I haven’t tested it, but that makes more sense, IMO.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

while compiling the following code i have got error @Override public void routeCustomerRequest (int
I have the following code: public abstract class A<T extends B<? extends A<T>>>{ @Override
i have the following code: @Override public boolean dispatchKeyEvent(KeyEvent event) { int action =
I have a following pseudo-code. public boolean onContextItemSelected(MenuItem aItem) { switch(aItem.getItemId()) { case A:
Hi All I have the following code: enter code here public class XMPPClient extends
I have the following Callable: public class Worker implements Callable<Boolean>{ @Override public Boolean call(){
I have the following code for a one off alarm... public boolean onMenuItemClick(MenuItem item)
I have the following code: public boolean stopped = false; public void fadeOut(final ImageView
I have the following code: int a = 0; protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
I have following code for updating user's column public void UpdateLastModifiedDate(string username) { using

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.