com.unboundid.util.ReverseComparator Maven / Gradle / Ivy
/*
* Copyright 2009-2017 UnboundID Corp.
* All Rights Reserved.
*/
/*
* Copyright (C) 2009-2017 UnboundID Corp.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License (GPLv2 only)
* or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see .
*/
package com.unboundid.util;
import java.io.Serializable;
import java.util.Comparator;
/**
* This class provides an implementation of a {@code Comparator} object that may
* be used to iterate through values in what would normally be considered
* reverse order.
*
* @param The type of object to use with this comparator.
*/
@NotMutable()
@ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE)
public final class ReverseComparator
implements Comparator, Serializable
{
/**
* The serial version UID for this serializable class.
*/
private static final long serialVersionUID = -4615537960027681276L;
// The comparator that will be used to make the underlying determination.
private final Comparator baseComparator;
/**
* Creates a new comparator that will sort items in reverse order. The
* generic type for this class must implement the {@link Comparable}
* interface.
*/
public ReverseComparator()
{
baseComparator = null;
}
/**
* Creates a new comparator that will sort items in the reverse order that
* they would be normally sorted using the given comparator.
*
* @param baseComparator The base comparator that will be used to make the
* determination.
*/
public ReverseComparator(final Comparator baseComparator)
{
this.baseComparator = baseComparator;
}
/**
* Compares the provided objects to determine their relative order in a
* sorted list.
*
* @param o1 The first object to compare.
* @param o2 The second object to compare.
*
* @return A negative integer if the first object should be ordered before
* the second, a positive integer if the first object should be
* ordered after the second, or zero if there is no difference in
* their relative orders.
*/
@SuppressWarnings("unchecked")
public int compare(final T o1, final T o2)
{
final int baseValue;
if (baseComparator == null)
{
baseValue = ((Comparable super T>) o1).compareTo(o2);
}
else
{
baseValue = baseComparator.compare(o1, o2);
}
if (baseValue < 0)
{
return 1;
}
else if (baseValue > 0)
{
return -1;
}
else
{
return 0;
}
}
/**
* Retrieves a hash code for this class.
*
* @return A hash code for this class.
*/
@Override()
public int hashCode()
{
if (baseComparator == null)
{
return 0;
}
else
{
return baseComparator.hashCode();
}
}
/**
* Indicates whether the provided object may be considered equal to this
* comparator.
*
* @param o The object for which to make the determination.
*
* @return {@code true} if the provided object may be considered equal to
* this comparator, or {@code false} if not.
*/
@Override()
@SuppressWarnings("unchecked")
public boolean equals(final Object o)
{
if (o == null)
{
return false;
}
if (o == this)
{
return true;
}
if (! (o.getClass().equals(ReverseComparator.class)))
{
return false;
}
final ReverseComparator c = (ReverseComparator) o;
if (baseComparator == null)
{
return (c.baseComparator == null);
}
else
{
return baseComparator.equals(c.baseComparator);
}
}
}