The linkedhashset tag has no wiki summary.
11
votes
4answers
3k views
HashSet vs LinkedHashSet
What is the difference between them? I know that
A LinkedHashSet is an ordered version of HashSet that
maintains a doubly-linked List across all elements. Use this class instead of HashSet
...
4
votes
2answers
928 views
Does hibernate preserve the order of a LinkedHashSet and if so, how?
Does hibernate preserve the order of a LinkedHashSet and if so, how? In case this depends on the type of database, I'd like to know this for PostgreSQL.
Background:
I know what a LinkedHashSet is ...
2
votes
5answers
3k views
What are the pros and cons of LinkedHashMaps vs. LinkedHashSets?
Could someone explain the main benefits for choosing one over the other and the detriments that come with that choice?
1
vote
3answers
140 views
hibernate: how to map a Set association so that HQL order by is preserved
OK, this looks mostly like (another) bug/unimplemented functionality in Hibernate.
Is it possible to map a Set association in such a way that the "order by" clause in HQL is respected?
For example, ...
1
vote
2answers
142 views
Save to a LinkedHashSet <String> - BEGINNER
@Override
public LinkedHashSet <String> listHotels() {
Query query = em.createNativeQuery("select * from Hotel");
LinkedHashSet <String> hotel= query.getResultList();
return ...
1
vote
7answers
563 views
Using the keySet() method in HashMap
I have a method that goes through the possible states in a board and stores them in a HashMap
void up(String str){
int a = str.indexOf("0");
if(a>2){
String s = ...
0
votes
3answers
113 views
Why isn't my Java LinkedHashSet removing an object it contains?
I have an object in a LinkedHashSet that implements equals, hashCode and compareTo (in a superclass) but when I try to remove that exact object from the set set.remove(obj) the remove method returns ...
0
votes
2answers
198 views
Bug in LinkedHashSet javadoc?
Maybe I'm being picky, but in javadoc there is a following information about LinkedHashSet implementation:
This implementation differs from
HashSet in that it maintains a
doubly-linked list ...
-1
votes
1answer
28 views
Counting Frequency of a word in a sentence
I have a LinkedHashSet containing words. I would like to count the frequency of occurence of each of these words in a sentence. The following is my code:
while(itr.hasNext())
{
arr1[i++] ...
-1
votes
3answers
129 views
LinkedHashSet: hashCode() and equals() match, but contains() doesn't
How is the following possible:
void contains(LinkedHashSet data, Object arg) {
System.out.println(data.getClass()); // java.util.LinkedHashSet
System.out.println(arg.hashCode() == ...
-2
votes
1answer
48 views
error using isEmpty() in linkedhashset
i'm using linkedhashset to store my synonym list. if there is synonym for my search word, some statement will be done. However, when there is no synonym for my search word, some errors will occur. ...