vote up 0 vote down star

Well, I tested TreeMap but it doesn't take in account IgnoreCase on string comparision. I need to order lexicographically and ignoring case. Is there any other way?

Thanks, that works (TreeMap (Comparator c)). However, I have another question:

public final Comparator<Object> STR_IGN_CASE_COMP = new Comparator<Object>() {

    public int compare(Object h1, Object h2) {
            String s1 = h1.getId();
            String s2 = h2.getId();
            return s1.compareToIgnoreCase(s2);
    }
}; //STR_IGN_CASE_COMP

How can I universialize the comparator to work with different objects? assuming all have the getId() method.

Thanks, Martin

flag
4  
Martin, it's not a good idea to completely change the question. The next user with the privilege to do so (perhaps you) should revert it to its previous state. Just post a new question! – Kevin Bourrillion Nov 7 at 3:40
1  
+1, Agreed, when someone gives you an answer to your question, you should accept the answer and move on to a new question if one arises. – camickr Nov 7 at 4:34
I've rolled it back. – finnw Nov 7 at 12:00
It would appear that the question has been "rolled forward" again, the question no longer matches any of the answers. – Paul Wagland Nov 21 at 23:14

7 Answers

vote up 9 vote down

You want to use a Comparator in the TreeMap constructor. In particular, look at String.CASE_INSENSITIVE_ORDER.

TreeMap map = new TreeMap(String.CASE_INSENSITIVE_ORDER);

Using Collator or a custom Comparator may work better for you in a non-English locale or if you need more complex ordering.

link|flag
1  
+1 for the link to String.CASE_INSENSITIVE_ORDER. – tangens Nov 7 at 8:19
vote up 2 vote down

The best way would be to use a Collator. A collator is a built in class, which also implements Comparable, and therefore you can use it for your TreeMap.

With a collator, you can also control the strength of the comparision, for example, if you want to be accent-insensitive as well.

Collator stringCollator = Collator.getInstance();
stringCollator.setStrength(Collator.PRIMARY); 
new TreeMap<String, String>(stringCollator)
link|flag
vote up 1 vote down

Provide it a Comparator that compares strings case ignored.

TreeMap(Comparator c)

link|flag
vote up 0 vote down

If you had a list, I would say try Collections.sort() with a Comparator. You may have to roll your own Comparator that uses String.equalsIgnoreCase() instead of equals().

public static <T> void sort(List<T> list,
                        Comparator<? super T> c)

But I was on the right track. Try the TreeMap constructor that takes a Comparator:

public TreeMap(Comparator<? super K> comparator)
link|flag
vote up 0 vote down

Yes, what you want is to use the TreeMap constructor that takes a Comparator. Make a comparator that uses compareToIgnoreCase.

link|flag
vote up 0 vote down

I suspect that you should construct your TreeMap with a custom comparator.

import java.text.Collator; import java.util.Comparator;

class IgnoreCaseComp implements Comparator { Collator col;

IgnoreCaseComp() { col = Collator.getInstance();

col.setStrength(Collator.PRIMARY);

}

public int compare(String strA, String strB) { return col.compare(strA, strB); } }

link|flag
vote up -1 vote down

How can I universialize the comparator to work with different objects? assuming all have the getId() method.

You should be able to use a BeanComparator.

link|flag
I've recommended the question be reverted to the original question and a new question posted instead; if and when that happens, this answer ought probably to be removed too. – Kevin Bourrillion Nov 7 at 3:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.