LinkedHashMap is a Hash table and linked list implementation of the Map interface in the Java Standard library. This implementation provides a predictable iteration order, in contrast with the unspecified ordering provided by HashMap, which is normally the order in which keys were inserted into the ...

learn more… | top users | synonyms

1
vote
3answers
27 views

Better approch to choose fine data structure for picking random key value from a long list [HashMap,LinkedHashMap and ConcurrentHashMap]

Language : Java Project Type : Web (war application) Requirement : According to region we need to show string literal from database. Description: - We have some language specific database ...
3
votes
1answer
41 views

GSON issue with String

String s = "m\\"+"/m\\/m/m/m/m/m"; LinkedHashMap<String, String> hm = new LinkedHashMap<>(); hm.put("test", s); System.out.println(hm+" Hash map = "+hm.toString()); ...
1
vote
1answer
49 views

Can I remove entries in LinkedHashMap<> for array of keys and not a single entry for a single key?

I use LinkedHashMap<> in my Android application and the problem I want to delete several entries from it at once.In Objective-C there is a method removeObjectsForKeys which accepts array of keys ...
-1
votes
2answers
38 views

Move Selected elements of a Map up or down [closed]

I am trying to modify a list of elements in a Map by moving the selected items up or down. My idea is to remember the elements next to selected items. Because the elements are in a map, I find it much ...
0
votes
1answer
31 views

Getting back specific lower bounds value from inputted key in LinkedHashMap

I have an LinkedHashMap that uses the values from a char array as its key adds integers 1 to the size of the char array as its values: hmConvert = new LinkedHashMap<Character, Integer>(); for ...
0
votes
0answers
17 views

Hibernate Sort ElementCollection LinkedHashMap by Values

@Entity public class Product extends BasePersistentObject { @ElementCollection(fetch=FetchType.EAGER) private Map<String,Integer> quantityOptions; .... How do I annotate the above to ...
-2
votes
2answers
51 views

comparator for LinkedHashMap

i am making a program to read data from excel files and store them in tables. But since I am new to Comparators in Java i have difficulties in making one of them. Here is my issue, I have managed to ...
-1
votes
1answer
49 views

sorting LinkedHashMap using IDs

I am using LinkedHashMap to read data from excel file and store them ina table in mysql! How can i sort the LinkedHashMap to store the data with descending IDs? Here is an example of my excel file: ...
1
vote
2answers
44 views

store data in table by ascending IDs

i have a program where i have to read data from excel file and store them in a database . I am using LinkedHashmap to read each cell as a string and store them. My excel file contains the above data: ...
1
vote
2answers
29 views

Java - How can I get a single pair from a LinkedHashMap?

Specifically, I want to use a LinkedHashMap in a "for each" loop. For example, let's say I create a LinkedHashMap: LinkedHashMap<String, Integer> someHash = new LinkedHashMap<String, ...
0
votes
1answer
33 views

treemap for ascending ID

i have a program where i have to read data from excel file and store them in a database . I am using LinkedHashmap to read each cell as a string. My excel file contains the above data: ID NAME ...
0
votes
1answer
58 views

Java - looping through LinkedhashMap and get the value

I have the following LinkedHashMap in which i put values in the following way: if (preAuthorizeAnnotation != null) { requestMappingValues = requestMappingAnnotation.value(); // to get the url ...
0
votes
3answers
46 views

Changing object references in Java dynamic Lists or Maps

Considering Java dynamic lists or Maps like LinkedList, LinkedHashMap, TreeMap, etc. I suppose that any object has a reference (next->) to the next object (am I right?). Why there are no ways (e.g., a ...
3
votes
5answers
66 views

How to treat keys of HashMap as optional in java [duplicate]

While using Map as a function argument, only values for 3 keys are populated. However when this function is invoked in another function, the user populates values for initial 2 keys and he does not ...
0
votes
1answer
34 views

Accessing variable in Map<Class, String> by Index

I have a LinkedHashMap with a class as the Key as such: private final Map<Files, String> list = new LinkedHashMap<Files,String>(); Files is a class consisting of 3 variables: class ...
0
votes
4answers
40 views

ConcurrentModificationException Woes

I have a method test(), in which I am trying to compare two LinkedHashMaps against each other and modify the contents of one of the maps by removing the key/value pair if it is found in both LHM's. I ...
0
votes
2answers
99 views

How do i store bytearray as value in hashmaps?

i tried to store a bytearray in a LinkedHashMap static Map<Long, byte[]> lhm2 = new LinkedHashMap<Long, byte[]>(1000); But lhm2.get(1) will throw a NullPointerException. lhm2 ...
1
vote
1answer
67 views

Ordered generic Map implementation?

Which library is the best with ordered map implementation? Implementation is required to be 1) generic 2) accessible by integer index One from JRE can't be accessed by index: ...
0
votes
1answer
156 views

Casting LinkedHashMap to Complex Object

I've got an application that stores some data in DynamoDB using Jackson to marshall my complex object into a JSON. For example the object I'm marshalling might look like this: private String ...
1
vote
4answers
440 views

Can't parse JSON array of arrays to LinkedHashMap in Jackson

I' m developing an Android REST client. We use JSON as data exchange format, so I use a Jackson parser. I get different Json responses from the server like simple arrays: ...
0
votes
3answers
69 views

LinkedHashMap printing formatted?

Hey I have a LinkedHashMap containing several values but I'm struggling to print it in the format I want. It will be passed a size integer, and I want it to print out the values in a square format, ...
1
vote
2answers
44 views

equivalent data structure of LinkedHaspMap in guava or apache commons lang

I have a LinkedHashMap based on "Double" data types. LinkedHashMap<Double, Double> meetingRecord; I want it to be in primitive data type LinkedHashMap<double, double> meetingRecord; ...
1
vote
2answers
149 views

LinkedHashMap<> immutable equivalent in Google Guava library?

I only begin to learn Guava library and a little bit confused with its collecions package. I want to find something like ImmutableLinkedHashMap <> (I need to use an immutable key-value structure ...
0
votes
3answers
112 views

synchronization issue on LinkedHashMap

I am confused by one specific point regarding synchronization feature of LinkedHashMap. Here are the related Javadoc where I am confused. My confusion point is, why remove method is special here, ...
6
votes
3answers
96 views

LinkedHashMap order issue

It is mentioned in the LinkedHashMap Javadocs: In particular, operations on collection-views do not affect the order of iteration of the backing map. What does "operations on collection-views" ...
1
vote
3answers
140 views

What order are elements inserted with LinkedHashMap.putAll() in?

I am reading Javadoc for LinkedHashMap, where it is mentioned: The putAll method generates one entry access for each mapping in the specified map, in the order that key-value mappings are ...
0
votes
2answers
107 views

Replacing an ArrayList item with a Linkedhashmap VALUE

I have a Linkedhashmap called numericValueMap that has the parameters String,String: {a=1,b=1,c=2,d=3,e=5} And I have an Arraylist called equation: { e, -, a, +, b, -, c, *, d, +, b} What I want ...
1
vote
3answers
233 views

duplicates for linkedhashmap

For the data that I am inputting into my program, I require duplicates, values for each item of data and I require the iteration order of the data to by insertion order as a default. This is the kind ...
2
votes
2answers
64 views

Changing LinkedHashMapValues

Below is data from 2 linkedHashMaps: valueMap: { y=9.0, c=2.0, m=3.0, x=2.0} formulaMap: { y=null, ==null, m=null, *=null, x=null, +=null, c=null, -=null, (=null, )=null, /=null} What I want to ...
1
vote
1answer
110 views

Iteration order of a LinkedHashMap

After reading the documentation for LinkedHashMap (and having used it several times), I'm still not clear about one of its properties...is the iteration order for a LinkedHashMap: the same as ...
0
votes
2answers
100 views

Deleting a selected Item using linked hash map

I have a basket where products are added to and for each product there is a delete button: Whenever I click the bottom button it deletes the bottom product, the problem is it also deletes the last ...
0
votes
3answers
40 views

Regarding compile time error in Map

Please don't consider this question as duplicate although I have a similiar question earlier but this time it is different.. Map m = new LinkedHashMap(); m.put ("123", "23"); m.put ("323", "23"); ...
0
votes
2answers
65 views

String Java find spaces

I have a phrase on a string and I want to split it on other 5 or more string without spaces. For example: String test = "hi/ please hepl meok?"; and I want : String temp1 = "hi/"; String temp2 = ...
1
vote
1answer
135 views

LinkedHashMap with methods to access inner Linked List

I need to access the inner LinkedList inside of a LinkedHashMap. I want to be able to access both the tail and the head. Through the iterator, I can only access either the head or the tail, depending ...
2
votes
2answers
188 views

LinkedHashMap containsKey or containsValue

Why is this happening and how can I avoid it? I assume it only checks the references but that's not very convenient. import java.util.LinkedHashMap; public class CheckingLinkedHashMap { public ...
7
votes
4answers
94 views

java: maps zoo, what to choose

I'm pretty new to the Java World (since I'm writing primary in C/C++). I'm using maps in my apps. Since java.util.Map is abstract I need to instantiate it's implementation. Usually I use HashMap like: ...
0
votes
2answers
149 views

Java LinkedHashMap not maintaing the order of insert when looped in Play Framework 2.0 template

In play framework's (2.0) application controller I am creating a java LinkedHashMap<String, List<MyObject>) to maintain the order in which I am inserting the string key. I tried iterating ...
1
vote
3answers
1k views

How get value from LinkedHashMap based on index not on key?

I have LinkedHashMap<String, List<String>> hMap; I want to get List<String> by position not on key. I don't want to use iterate. Is there any other way to get Value based on ...
0
votes
2answers
83 views

Query about data structure in java

i want to count word frequency from multiple files. Moreover, i have these words in these files a1.txt = {aaa, aaa, aaa} a2.txt = {aaa} a3.txt = {aaa, bbb} so, the results must be aaa = 3, bbb ...
0
votes
1answer
66 views

Is put() on an access-ordered LinkedHashMap a structural modification even if an item with the specified key already exists?

Title say it all: There is a slight ambiguity in the documentation as I understand it. First the documentation speaks about insertion-ordered LinkedHashMap's and notes that the iteration order is not ...
1
vote
1answer
96 views

Data Structure for Queue using Map Implementations in Java with Size limit of 5

I have map with some records. I want to restrict that map to only 5 elements and whenever a new element is added the first item should be removed and new element should be added in last position of ...
0
votes
0answers
31 views

Where is LinkedHashMap.eldest()?

The version of java.util.LinkedHashMap in recent versions of Android has an eldest() method. I've looked everywhere but I can't find the code for it! As far as I can tell it isn't in OpenJDK or Apache ...
0
votes
2answers
99 views

LinkedHashMap's impl - Uses Double Linked List, not a Single Linked List; Why

As I referred to the documentation of LinkedHashMap, It says, a double linked list(DLL) is maintained internally I was trying to understand why a DLL was chosen over S(ingle)LL The biggest advantage ...
3
votes
5answers
1k views

HashMap vs LinkedHashMap performance in iteration over values()

Is there any performance difference between HashMap and LinkedHashMap for traversal through values() function?
0
votes
1answer
62 views

JAX-WS, why LinkedHashMap collection received is empty?

I am building a java webservice which receive a LinkedHashMap as argument. The LinkedHashMap collection has some elements inserted in the client side, but I received it empty in the webservice.
1
vote
4answers
451 views

Get Next key in Linkedhashmap in java

I am creating dynamic tabs.generateTab() method help to set tabs to be shown or not. Like Property to be shown, Info not to be shown, etc. But I am getting stuck in some point. I want to display ...
0
votes
0answers
94 views

Linked Hash map passing between two activities

I am trying to pass a linkedhashmap between two activities in the first activity my code for passing hashmap is Intent intent = new Intent(MyBrowser.this, Home.class); Bundle b = new ...
1
vote
0answers
156 views

Simulating memory limited cache using Java [closed]

I am trying to write a size configured LRU cache for a web access simulation. By size configured, I mean the eviction is triggered by object's size rather than object count. I found several answers ...
2
votes
2answers
326 views

java cast LinkedHashMap to class extending LinkedHashMap

I have a class (EntireFile) that extends the LinkedHashMap. I try to cast: EntireFile old = (EntireFile) functionReturningLinkedHashMap(); It throws exception with message: "java.util.LinkedHashMap ...
0
votes
3answers
138 views

java concurrent map sorted by value

I'm looking for a way to have a concurrent map or similar key->value storage that can be sorted by value and not by key. So far I was looking at ConcurrentSkipListMap but I couldn't find a way to ...

1 2 3