Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (C) 2006-2015 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.phloc.commons.compare;
import java.text.Collator;
import java.util.Comparator;
import java.util.Locale;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
/**
* A small helper class that provides comparison methods that are
* null safe. Also provides secure ways to compare double and float
* values.
*
* @author Boris Gregorcic
* @author Philip Helger
*/
@Immutable
public final class CompareUtils
{
/**
* @deprecated Use {@link GlobalCompareSettings#isSortNullValuesFirst()} ()
* instead
*
*
reason: The default behaviour can now be overriden
*
*
criticality: 4
*
note:
*
deprecated since: 4.4.11
*
unavailable from:
*
*/
@Deprecated
public static final boolean DEFAULT_NULL_VALUES_COME_FIRST = GlobalCompareSettings.DEFAULT_NULL_VALUES_COME_FIRST;
private CompareUtils ()
{}
/**
* Special version for boolean, true before false
*
* @param b1
* First value
* @param b2
* Second value
* @return -1, 0 or + 1
*/
public static int compareTrueBeforeFalse (final boolean b1, final boolean b2)
{
return b1 == b2 ? 0 : b1 ? +1 : -1;
}
/**
* Special version for boolean, true before false
*
* @param b1
* First value
* @param b2
* Second value
* @return -1, 0 or + 1
*/
public static int compareFalseBeforeTrue (final boolean b1, final boolean b2)
{
return b1 == b2 ? 0 : b1 ? -1 : +1;
}
/**
* Special version for byte
*
* @param n1
* First value
* @param n2
* Second value
* @return -1, 0 or + 1
*/
public static int compare (final byte n1, final byte n2)
{
return n1 < n2 ? -1 : n1 > n2 ? +1 : 0;
}
/**
* Special version for byte
*
* @param n1
* First value
* @param n2
* Second value
* @return -1, 0 or + 1
*/
public static int compare (final char n1, final char n2)
{
return n1 < n2 ? -1 : n1 > n2 ? +1 : 0;
}
/**
* Special version for doubles
*
* @param d1
* First value
* @param d2
* Second value
* @return -1, 0 or + 1
*/
public static int compare (final double d1, final double d2)
{
return Double.compare (d1, d2);
}
/**
* Special version for floats
*
* @param f1
* First value
* @param f2
* Second value
* @return -1, 0 or + 1
*/
public static int compare (final float f1, final float f2)
{
return Float.compare (f1, f2);
}
/**
* Special version for int
*
* @param n1
* First value
* @param n2
* Second value
* @return -1, 0 or + 1
*/
public static int compare (final int n1, final int n2)
{
return n1 < n2 ? -1 : n1 > n2 ? +1 : 0;
}
/**
* Special version for long
*
* @param n1
* First value
* @param n2
* Second value
* @return -1, 0 or + 1
*/
public static int compare (final long n1, final long n2)
{
return n1 < n2 ? -1 : n1 > n2 ? +1 : 0;
}
/**
* Special version for short
*
* @param n1
* First value
* @param n2
* Second value
* @return -1, 0 or + 1
*/
public static int compare (final short n1, final short n2)
{
return n1 < n2 ? -1 : n1 > n2 ? +1 : 0;
}
/**
* Compare the passed items and handle null values correctly. A
* null value is always smaller than a non-null
* value.
*
* @param
* Any comparable object to be used. Both need to be of the same type.
* @param aObj1
* First object to compare. May be null.
* @param aObj2
* Second object to compare. May be null.
* @return 0 if they are equal (or both null), -1 or +1.
*/
public static > int nullSafeCompare (@Nullable final DATATYPE aObj1,
@Nullable final DATATYPE aObj2)
{
return nullSafeCompare (aObj1, aObj2, GlobalCompareSettings.getInstance ().isSortNullValuesFirst ());
}
/**
* Compare the passed items and handle null values correctly. A
* null value is always smaller than a non-null
* value.
*
* @param
* Any comparable object to be used. Both need to be of the same type.
* @param aObj1
* First object to compare. May be null.
* @param aObj2
* Second object to compare. May be null.
* @param bNullValuesComeFirst
* if truenull values are ordered before
* non-null values
* @return 0 if they are equal (or both null), -1 or +1.
*/
public static > int nullSafeCompare (@Nullable final DATATYPE aObj1,
@Nullable final DATATYPE aObj2,
final boolean bNullValuesComeFirst)
{
return aObj1 == aObj2 ? 0
: aObj1 == null ? (bNullValuesComeFirst ? -1 : +1)
: aObj2 == null ? (bNullValuesComeFirst ? +1 : -1) : aObj1.compareTo (aObj2);
}
/**
* Compare the passed items and handle null values correctly. A
* null value is always smaller than a non-null
* value.
*
* @param
* Any object to be used. Both need to be of the same type.
* @param aObj1
* First object to compare. May be null.
* @param aObj2
* Second object to compare. May be null.
* @param aComp
* The comparator to be used if both parameters are not
* null. The comparator itself may not be
* null.
* @return 0 if they are equal (or both null), -1 or +1.
*/
public static int nullSafeCompare (@Nullable final DATATYPE aObj1,
@Nullable final DATATYPE aObj2,
@Nonnull final Comparator aComp)
{
return nullSafeCompare (aObj1, aObj2, aComp, GlobalCompareSettings.getInstance ().isSortNullValuesFirst ());
}
/**
* Compare the passed items and handle null values correctly. A
* null value is always smaller than a non-null
* value.
*
* @param
* Any object to be used. Both need to be of the same type.
* @param aObj1
* First object to compare. May be null.
* @param aObj2
* Second object to compare. May be null.
* @param aComp
* The comparator to be used if both parameters are not
* null. The comparator itself may not be
* null.
* @param bNullValuesComeFirst
* if truenull values are ordered before
* non-null values
* @return 0 if they are equal (or both null), -1 or +1.
*/
public static int nullSafeCompare (@Nullable final DATATYPE aObj1,
@Nullable final DATATYPE aObj2,
@Nonnull final Comparator aComp,
final boolean bNullValuesComeFirst)
{
return aObj1 == aObj2 ? 0
: aObj1 == null ? (bNullValuesComeFirst ? -1 : +1)
: aObj2 == null ? (bNullValuesComeFirst ? +1 : -1)
: aComp.compare (aObj1, aObj2);
}
public static int nullSafeCompare (@Nullable final String sStr1,
@Nullable final String sStr2,
@Nonnull final Locale aSortLocale)
{
return nullSafeCompare (sStr1, sStr2, aSortLocale, GlobalCompareSettings.getInstance ().isSortNullValuesFirst ());
}
public static int nullSafeCompare (@Nullable final String sStr1,
@Nullable final String sStr2,
@Nonnull final Locale aSortLocale,
final boolean bNullValuesComeFirst)
{
return nullSafeCompare (sStr1, sStr2, CollatorUtils.getCollatorSpaceBeforeDot (aSortLocale), bNullValuesComeFirst);
}
@SuppressFBWarnings ({ "ES_COMPARING_PARAMETER_STRING_WITH_EQ" })
public static int nullSafeCompare (@Nullable final String sStr1,
@Nullable final String sStr2,
@Nonnull final Collator aCollator)
{
return nullSafeCompare (sStr1, sStr2, aCollator, GlobalCompareSettings.getInstance ().isSortNullValuesFirst ());
}
@SuppressFBWarnings ({ "ES_COMPARING_PARAMETER_STRING_WITH_EQ" })
public static int nullSafeCompare (@Nullable final String sStr1,
@Nullable final String sStr2,
@Nonnull final Collator aCollator,
final boolean bNullValuesComeFirst)
{
return sStr1 == sStr2 ? 0
: sStr1 == null ? (bNullValuesComeFirst ? -1 : +1)
: sStr2 == null ? (bNullValuesComeFirst ? +1 : -1)
: aCollator.compare (sStr1, sStr2);
}
}