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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:32:40+00:00 2026-06-10T06:32:40+00:00

I wondered how I could change ordering-direction only on some contitional. In my case

  • 0

I wondered how I could change ordering-direction only on some contitional. In my case Strings starting with ‘BB’ should be ordered in the other direction, everything else should be ordered as usual.

My Test-Class:

public class StringTest {


    public static void main(String[] args) {
        SomeClass someClass1= new SomeClass("AA");
        SomeClass someClass2= new SomeClass("AB");
        SomeClass someClass3= new SomeClass("CB4");
        SomeClass someClass4= new SomeClass("BB7");
        SomeClass someClass5= new SomeClass("BB9");
        SomeClass someClass6= new SomeClass("BB3");
        SomeClass someClass7= new SomeClass("CB3");

        List<SomeClass> list = new ArrayList<SomeClass>();
        list.add(someClass1);
        list.add(someClass2);
        list.add(someClass3);
        list.add(someClass4);
        list.add(someClass5);
        list.add(someClass6);
        list.add(someClass7);

        Collections.sort(list);

        for (SomeClass someClass : list) {
            System.out.println(someClass.getSomeField());
        }
    }

}

My Comparator:

public class SomeClass implements Comparable<SomeClass>
{
  private String someField;

  public int compareTo(final SomeClass o)
  {
    int res = 0;

    if (someField.startsWith("BB"))
    {
      res = o.someField.compareTo(someField);
    }
    else
    {
      res = someField.compareTo(o.someField);
    }
    return res;
  }

}

My desired output:
AA
AB
BB9
BB7
BB3
CB3
CB4

The actual result so far:
AA
AB
CB3
BB9
BB7
BB3
CB4

Jonny

  • 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-06-10T06:32:41+00:00Added an answer on June 10, 2026 at 6:32 am

    You need to make sure your Comparator applies the different sorting only when both elements start with “BB”. Right now your Comparator applies the different sorting even if you compare “BB9” with “CB3” and therefore the latter is being sorted in front of BB9.

    public class SomeClass implements Comparable<SomeClass>
    {
       private String someField;
    
       public int compareTo(final SomeClass o)
       {
         int res = 0;
    
         if (someField.startsWith("BB") && o.someField.startsWith("BB"))
         {
           res = o.someField.compareTo(someField);
         }
         else
         {
           res = someField.compareTo(o.someField);
         }
         return res;
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wondered if anyone could shed some light on the way in which layers
I am fairly new to OOP and wondered if you could provide some help
Just wondered if someone could point me some simple code which shows multi threaded
I came across some code the other day and I wondered if that was
Just wondered if anyone could point me in the right direction of storing multiple
Wondered if I could get your thoughts on what I should do in this
Evening everyone I wondered if some could answer me 2 quick questions. I made
Wondered if someone could help me write a MySQL query. I noticed in my
I got bored earlier and wondered if you could execute terminal commands on the
I'm having the following problem and wondered whether anyone could see why this is

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.