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

I have two LinkedHashMap<String, MyType> where keys can be common (say key from first
Lets say have this immutable record type: public class Record { public Record(int x,
Say i have a class: class Foo(object): def __init__(self,d): self.d=d d={'a':1,'b':2} inst=Foo(d) inst.d Out[315]:
First, I must say have never programmed in iOS, I am only familiar with
Say I have <div id=controller> <div id=first>1</div> <div id=second>2</div> </div> $('#controller').html() .which returns <div
Say I have this function (assume I'm accessing Cache in a threadsafe way): object
Let's say I have something like this: LinkedHashMap <String, ArrayList<String>> h keyOne has stringOne
Say I have a very simple java object that only has some getXXX and
Say I have this little bit of code: public static void LoadSomething(Type t) {
Say I have an object in 2D space that can rotate and then should

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.