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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:58:06+00:00 2026-05-30T22:58:06+00:00

Say I have a LinkedHashMap containing 216 entries, how would I get the first

  • 0

Say I have a LinkedHashMap containing 216 entries, how would I get the first 100 values (here, of type Object) from a LinkedHashMap<Integer, Object>.

  • 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-30T22:58:08+00:00Added an answer on May 30, 2026 at 10:58 pm

    Ugly One-Liner

    This ugly one-liner would do (and return a ArrayList<Object> in the question’s case):

    Collections.list(Collections.enumeration(lhMap.values())).subList(0, 100)
    

    This would work for a HashMap as well, however HashMap being backed by a HashSet there’s not guarantee that you will get the first 100 values that were entered; it would work on other types, with similar limitations.

    Notes:

    • relatively unefficient (read the Javadoc to know why – though there’s worse!),
    • careful when using views (read the Javadoc to know more),
    • I did mention it was ugly.

    Step-By-Step Usage Example

    (as per the OP’s comment)

    Map<Integer, Pair<Double, SelectedRoad>> hashmap3 =
      new LinkedHashMap<Integer, Pair<Double, SelectedRoad>>();
    
    // [...] add 216 elements to hasmap3 here somehow
    
    ArrayList<Pair<Double,SelectedRoad>> firstPairs = 
      Collections.list(Collections.enumeration(hashmap3.values())).subList(0, 100)
    
    // you can then view your Pairs' SelectedRow values with them with:
    //  (assuming that:
    //    - your Pair class comes from Apache Commons Lang 3.0
    //    - your SelectedRoad class implements a decent toString() )
    for (final Pair<Double, SelectedRoad> p : firstPairs) {
        System.out.println("double: " + p.left);
        System.out.println("road  : " + p.right);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say have this immutable record type: public class Record { public Record(int x,
Let's say have something like: SELECT energy_produced, energy_consumed, timestamp1 AS timestamp FROM ( SELECT
Say I have a SqlAlchemy model something like this: from sqlalchemy.ext.declarative import declarative_base from
Say I have a LINQ-to-XML query that generates an anonymous type like this: var
Say I have a byte array with 100,000 bytes in it. I want to
Say I have two columns of names. All names in the first column are
Say I have a higher kinded type SuperMap[Key[_],Value[_]]`. Suppose now that I had something
Say I have the following code: private Integer number; private final Object numberLock =
First, I must say have never programmed in iOS, I am only familiar with
Say I have an HTML form like this to collect an email from a

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.