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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:46:17+00:00 2026-05-26T03:46:17+00:00

I would like to sort a list on base of multiple criteria. public class

  • 0

I would like to sort a list on base of multiple criteria.

public class CustomerComparator implements Comparator<Customer> {

    public int compare(Customer customer1, Customer customer2) {
        int comparison = -1;
        comparison = customer2.getCustomerPriority().compareTo(customer1.getCustomerPriority());
        if( comparison == 0 ) {
            comparison = customer1.getCustomerNumber().compareTo(customer2.getCustomerNumber());
        }
    return comparison;
    }
}

Basically, I want to sort in following order. Customer with higher priority should be on top of the list, and if two customers have same priority than one with lower customer number should go first.

Original:

Customer Priority
1        0       
2        0
3        1
4        0
5        0

it should be sorted as below:

Customer   Priority
3          1
1          0
2          0
4          0
5          0

Thanks for help.
DD

  • 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-26T03:46:18+00:00Added an answer on May 26, 2026 at 3:46 am

    Java’s Arrays.sort and Collections.sort are both stable sorting algorithms meaning you can sort with one comparator and then with another, and values that are considered equivalent by the second will still be ordered by the first.

    It looks like you’ve already composed the two comparator’s into one though, so just pass that to the version of sort that takes a comparator:

    This sort is guaranteed to be stable: equal elements will not be reordered as a result of the sort.

    Sorting with n different comparators in series,

    public static <T> void sort(Collection<T> c, Comparator<? super T>... cmps) {
      for (Comparator<? super T> cmp : cmps) { Collections.sort(c, cmp); }
    }
    

    should be functionally equivalent to sorting once with the composition of those comparators

    public static <T> void sort(Collection<T> c, Comparator<? super T>... cmps) {
      Collections.sort(c, new Comparator<T>() {
        public int compare(T a, T b) {
          for (int i = cmps.length; --i >= 0;) {
            int delta = cmps[i].compare(a, b);
            if (delta != 0) { return delta; }
          }
          return 0;
        }
      });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list that I would like to sort in multiple ways. My
What I would like to do is to sort a list of textual identifiers
I would like to be able to sort my contact list to retrieve the
After I move (sort) one of my list items I would like to know
I would like to sort my list with the date property. This is my
I would like to sort a list of strings which represent paths. The sort
If I have a list of elements I would like to sort, Java offers
I have a list of lists that I would like to sort. foreach (var
I have a list of numbers which total 540000. I would like to sort
I have a disturbing case : I would like to sort a list of

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.