Skip to content
Advertisement

How to write custom comparator in java?

I want to store key-value pairs in TreeMap and sort the entries based on the value of key as per the following logic:

  1. “type” (case insensitive) key should be at first.
  2. the key start with “metadata” (case insensitive) should be at last in ascending order
  3. rest of the keys(case insensitive) should be in middle in ascending order

I am using Java 8 version.

Program:

JavaScript

Advertisement

Answer

I think the following covers your cases

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement