Package cn.sliew.milky.common.util
Class ObjectUtil
- java.lang.Object
-
- cn.sliew.milky.common.util.ObjectUtil
-
public class ObjectUtil extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleannullSafeEquals(Object o1, Object o2)Determine if the given objects are equal, returningtrueif both arenullorfalseif only one isnull.static intnullSafeHashCode(boolean[] array)Return a hash code based on the contents of the specified array.static intnullSafeHashCode(byte[] array)Return a hash code based on the contents of the specified array.static intnullSafeHashCode(char[] array)Return a hash code based on the contents of the specified array.static intnullSafeHashCode(double[] array)Return a hash code based on the contents of the specified array.static intnullSafeHashCode(float[] array)Return a hash code based on the contents of the specified array.static intnullSafeHashCode(int[] array)Return a hash code based on the contents of the specified array.static intnullSafeHashCode(long[] array)Return a hash code based on the contents of the specified array.static intnullSafeHashCode(short[] array)Return a hash code based on the contents of the specified array.static intnullSafeHashCode(Object obj)Return as hash code for the given object; typically the value ofObject#hashCode()}.static intnullSafeHashCode(Object[] array)Return a hash code based on the contents of the specified array.
-
-
-
Method Detail
-
nullSafeEquals
public static boolean nullSafeEquals(Object o1, Object o2)
Determine if the given objects are equal, returningtrueif both arenullorfalseif only one isnull.Compares arrays with
Arrays.equals, performing an equality check based on the array elements rather than the array reference.- Parameters:
o1- first Object to compareo2- second Object to compare- Returns:
- whether the given objects are equal
- See Also:
Object.equals(Object),Arrays.equals(long[], long[])
-
nullSafeHashCode
public static int nullSafeHashCode(Object obj)
Return as hash code for the given object; typically the value ofObject#hashCode()}. If the object is an array, this method will delegate to any of thenullSafeHashCodemethods for arrays in this class. If the object isnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(Object[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(boolean[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(byte[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(char[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(double[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(float[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(int[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(long[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
nullSafeHashCode
public static int nullSafeHashCode(short[] array)
Return a hash code based on the contents of the specified array. Ifarrayisnull, this method returns 0.
-
-