Class ListBasedComparator<T,K>

java.lang.Object
org.tquadrat.foundation.util.internal.ListBasedComparator<T,K>
Type Parameters:
T - The type to order.
K - The key type that is used to determine the order; this may be the same as the type itself.
All Implemented Interfaces:
Comparator<T>

@ClassVersion(sourceVersion="$Id: ListBasedComparator.java 1032 2022-04-10 17:27:44Z tquadrat $") @API(status=INTERNAL, since="0.0.5") public class ListBasedComparator<T,K> extends Object implements Comparator<T>

A comparator that works on a list of sort keys.

Sometimes, a special sort order is required that cannot be defined as a rule based on the values themselves. Instead an ordered list of value defines their sequence.

The implementation first determines the key for a given value, then it looks up that key in the key list to determine the sort order. Values whose keys are not in the key list are placed on the list, will be ordered based on the order implied by the given comparator according their keys.

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: ListBasedComparator.java 1032 2022-04-10 17:27:44Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.util.internal.ListBasedComparator"

UML Diagram for "org.tquadrat.foundation.util.internal.ListBasedComparator"

UML Diagram for "org.tquadrat.foundation.util.internal.ListBasedComparator"
  • Field Details

    • m_Comparator

      private final Comparator<? super K> m_Comparator
      The comparator that is used to determine the sort order for instances that do not have their keys in the list; may be null.
    • m_KeyProvider

      The key provider.
    • m_Keys

      private final K[] m_Keys
      The list with the sort order keys.
  • Constructor Details

    • ListBasedComparator

      public ListBasedComparator(Comparators.KeyProvider<T,K> keyProvider, Comparator<? super K> comparator, K[] keys)
      Creates a new ListBasedComparator instance.
      Parameters:
      keyProvider - The implementation of Comparators.KeyProvider that returns the sort keys for the instances to compare.
      comparator - The comparator that is used to order the instances that are not listed.
      keys - The sort order keys.
  • Method Details