gw.util.GosuObjectUtil Maven / Gradle / Ivy
/*
* Copyright 2014 Guidewire Software, Inc.
*/
package gw.util;
import gw.lang.reflect.IType;
import gw.lang.reflect.TypeSystem;
import java.io.Serializable;
/**
* This class is directly derived from org.apache.commons.lang.ObjectUtils and is
* intended to avoid dependencies on that project.
*
* @author Nissim Karpenstein
* @author Janek Bogucki
* @author Daniel L. Rall
* @author Stephen Colebourne
* @author Gary Gregory
* @author Mario Winterer
* David J. M. Karlsen
*/
public class GosuObjectUtil {
/**
* Singleton used as a null
placeholder where
* null
has another meaning.
*
* For example, in a HashMap
the
* {@link java.util.HashMap#get(java.lang.Object)} method returns
* null
if the Map
contains
* null
or if there is no matching key. The
* Null
placeholder can be used to distinguish between
* these two cases.
*
* Another example is Hashtable
, where null
* cannot be stored.
*
* This instance is Serializable.
*/
public static final Null NULL = new Null();
// Defaulting
//-----------------------------------------------------------------------
/**
* Returns a default value if the object passed is
* null
.
*
*
* ObjectUtils.defaultIfNull(null, null) = null
* ObjectUtils.defaultIfNull(null, "") = ""
* ObjectUtils.defaultIfNull(null, "zz") = "zz"
* ObjectUtils.defaultIfNull("abc", *) = "abc"
* ObjectUtils.defaultIfNull(Boolean.TRUE, *) = Boolean.TRUE
*
*
* @param object the Object
to test, may be null
* @param defaultValue the default value to return, may be null
* @return object
if it is not null
, defaultValue otherwise
*/
public static Object defaultIfNull(Object object, Object defaultValue) {
return object != null ? object : defaultValue;
}
/**
* Compares two objects for equality, where either one or both
* objects may be null
.
*
*
* ObjectUtils.equals(null, null) = true
* ObjectUtils.equals(null, "") = false
* ObjectUtils.equals("", null) = false
* ObjectUtils.equals("", "") = true
* ObjectUtils.equals(Boolean.TRUE, null) = false
* ObjectUtils.equals(Boolean.TRUE, "true") = false
* ObjectUtils.equals(Boolean.TRUE, Boolean.TRUE) = true
* ObjectUtils.equals(Boolean.TRUE, Boolean.FALSE) = false
*
*
* @param object1 the first object, may be null
* @param object2 the second object, may be null
* @return true
if the values of both objects are the same
*/
public static boolean equals(Object object1, Object object2) {
if (object1 == object2) {
return true;
}
if ((object1 == null) || (object2 == null)) {
return false;
}
return object1.equals(object2);
}
/**
* Gets the hash code of an object returning zero when the
* object is null
.
*
*
* ObjectUtils.hashCode(null) = 0
* ObjectUtils.hashCode(obj) = obj.hashCode()
*
*
* @param obj the object to obtain the hash code of, may be null
* @return the hash code of the object, or zero if null
* @since 2.1
*/
public static int hashCode(Object obj) {
return (obj == null) ? 0 : obj.hashCode();
}
// Identity ToString
//-----------------------------------------------------------------------
/**
* Gets the toString that would be produced by Object
* if a class did not override toString itself. null
* will return null
.
*
*
* ObjectUtils.identityToString(null) = null
* ObjectUtils.identityToString("") = "java.lang.String@1e23"
* ObjectUtils.identityToString(Boolean.TRUE) = "java.lang.Boolean@7fa"
*
*
* @param object the object to create a toString for, may be
* null
* @return the default toString text, or null
if
* null
passed in
*/
public static String identityToString(Object object) {
if (object == null) {
return null;
}
StringBuffer buffer = new StringBuffer();
identityToString(buffer, object);
return buffer.toString();
}
/**
* @return true if the given object is a pure java object array, false otherwise
*/
public static boolean isJavaReferenceArray(Object o) {
return o instanceof Object[];
}
/**
* Appends the toString that would be produced by Object
* if a class did not override toString itself. null
* will throw a NullPointerException for either of the two parameters.
*
*
* ObjectUtils.identityToString(buf, "") = buf.append("java.lang.String@1e23"
* ObjectUtils.identityToString(buf, Boolean.TRUE) = buf.append("java.lang.Boolean@7fa"
* ObjectUtils.identityToString(buf, Boolean.TRUE) = buf.append("java.lang.Boolean@7fa")
*
*
* @param buffer the buffer to append to
* @param object the object to create a toString for
* @since 2.4
*/
public static void identityToString(StringBuffer buffer, Object object) {
if (object == null) {
throw new NullPointerException("Cannot get the toString of a null identity");
}
buffer.append(object.getClass().getName())
.append('@')
.append(Integer.toHexString(System.identityHashCode(object)));
}
/**
* Appends the toString that would be produced by Object
* if a class did not override toString itself. null
* will return null
.
*
*
* ObjectUtils.appendIdentityToString(*, null) = null
* ObjectUtils.appendIdentityToString(null, "") = "java.lang.String@1e23"
* ObjectUtils.appendIdentityToString(null, Boolean.TRUE) = "java.lang.Boolean@7fa"
* ObjectUtils.appendIdentityToString(buf, Boolean.TRUE) = buf.append("java.lang.Boolean@7fa")
*
*
* @param buffer the buffer to append to, may be null
* @param object the object to create a toString for, may be null
* @return the default toString text, or null
if
* null
passed in
* @since 2.0
* @deprecated The design of this method is bad - see LANG-360. Instead, use identityToString(StringBuffer, Object).
*/
public static StringBuffer appendIdentityToString(StringBuffer buffer, Object object) {
if (object == null) {
return null;
}
if (buffer == null) {
buffer = new StringBuffer();
}
return buffer
.append(object.getClass().getName())
.append('@')
.append(Integer.toHexString(System.identityHashCode(object)));
}
// ToString
//-----------------------------------------------------------------------
/**
* Gets the toString
of an Object
returning
* an empty string ("") if null
input.
*
*
* ObjectUtils.toString(null) = ""
* ObjectUtils.toString("") = ""
* ObjectUtils.toString("bat") = "bat"
* ObjectUtils.toString(Boolean.TRUE) = "true"
*
*
* @param obj the Object to toString
, may be null
* @return the passed in Object's toString, or nullStr if null
input
* @see String#valueOf(Object)
* @since 2.0
*/
public static String toString(Object obj) {
return obj == null ? "" : obj.toString();
}
/**
* Gets the toString
of an Object
returning
* a specified text if null
input.
*
*
* ObjectUtils.toString(null, null) = null
* ObjectUtils.toString(null, "null") = "null"
* ObjectUtils.toString("", "null") = ""
* ObjectUtils.toString("bat", "null") = "bat"
* ObjectUtils.toString(Boolean.TRUE, "null") = "true"
*
*
* @param obj the Object to toString
, may be null
* @param nullStr the String to return if null
input, may be null
* @return the passed in Object's toString, or nullStr if null
input
* @see String#valueOf(Object)
* @since 2.0
*/
public static String toString(Object obj, String nullStr) {
return obj == null ? nullStr : obj.toString();
}
// Min/Max
//-----------------------------------------------------------------------
/**
* Null safe comparison of Comparables.
*
* @param c1 the first comparable, may be null
* @param c2 the second comparable, may be null
* @return
* - If both objects are non-null and unequal, the lesser object.
*
- If both objects are non-null and equal, c1.
*
- If one of the comparables is null, the non-null object.
*
- If both the comparables are null, null is returned.
*
*/
public static Object min(Comparable c1, Comparable c2) {
if (c1 != null && c2 != null) {
return c1.compareTo(c2) < 1 ? c1 : c2;
} else {
return c1 != null ? c1 : c2;
}
}
/**
* Null safe comparison of Comparables.
*
* @param c1 the first comparable, may be null
* @param c2 the second comparable, may be null
* @return
* - If both objects are non-null and unequal, the greater object.
*
- If both objects are non-null and equal, c1.
*
- If one of the comparables is null, the non-null object.
*
- If both the comparables are null, null is returned.
*
*/
public static Object max(Comparable c1, Comparable c2) {
if (c1 != null && c2 != null) {
return c1.compareTo(c2) >= 0 ? c1 : c2;
} else {
return c1 != null ? c1 : c2;
}
}
// Null
//-----------------------------------------------------------------------
/**
* Class used as a null placeholder where null
* has another meaning.
*
* For example, in a HashMap
the
* {@link java.util.HashMap#get(java.lang.Object)} method returns
* null
if the Map
contains
* null
or if there is no matching key. The
* Null
placeholder can be used to distinguish between
* these two cases.
*
* Another example is Hashtable
, where null
* cannot be stored.
*/
public static class Null implements Serializable {
/**
* Required for serialization support. Declare serialization compatibility with Commons Lang 1.0
*
* @see java.io.Serializable
*/
private static final long serialVersionUID = 7092611880189329093L;
/**
* Restricted constructor - singleton.
*/
Null() {
super();
}
/**
* Ensure singleton.
*
* @return the singleton value
*/
private Object readResolve() {
return GosuObjectUtil.NULL;
}
}
/**
* Return the hash code for an array
*
* @param array the array to compute the hash code.
*/
public static int arrayHashCode(Object array) {
if (array == null) {
return 0;
}
IType arrayType = TypeSystem.getFromObject(array);
int iLen = arrayType.getArrayLength(array);
int hashCode = 0;
for (int i = 0; i < iLen; i++) {
Object value = arrayType.getArrayComponent(array, i);
if (value != null) {
IType valueType = TypeSystem.getFromObject(value);
if (valueType.isArray()) {
hashCode = 31 * hashCode + hashCode(value);
} else {
hashCode = 31 * hashCode + value.hashCode();
}
}
}
return hashCode * 31 + iLen;
}
}