org.kuali.rice.kns.uif.util
Class CloneUtils
java.lang.Object
org.kuali.rice.kns.uif.util.CloneUtils
public class CloneUtils
- extends Object
Utility class for copying objects using reflection. Modified from the jCommon
library: http://www.matthicks.com/2008/05/fastest-deep-cloning.html
- Author:
- Matt Hicks, Kuali Rice Team (rice.collab@kuali.org)
Method Summary |
static
|
deepClone(O original)
|
protected static Object |
deepCloneList(Object original,
Map<Object,Object> cache,
boolean referenceCollectionCopy)
|
protected static Object |
deepCloneMap(Object original,
Map<Object,Object> cache,
boolean referenceCollectionCopy)
|
protected static Object |
deepCloneObject(Object original,
Map<Object,Object> cache)
|
static
|
deepCloneReflection(O original)
|
protected static Object |
deepCloneReflectionInternal(Object original,
Map<Object,Object> cache,
boolean referenceCollectionCopy)
|
protected static List<Class<?>> |
getClassHierarchy(Class<?> c,
boolean includeInterfaces)
|
static Field[] |
getFields(Class<?> c,
boolean includeStatic)
|
static Field[] |
getFields(Class<?> c,
boolean includeStatic,
boolean includeTransient)
|
static Field[] |
getFields(Object object,
boolean includeStatic)
|
static Field[] |
getFields(Object object,
boolean includeStatic,
boolean includeTransient)
|
protected static Object |
instantiate(Object original)
|
protected static Field |
internalField(Object object,
String fieldName)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
LOG
private static final org.apache.log4j.Logger LOG
fieldCache
private static final Map<String,Field[]> fieldCache
internalFields
private static final Map<String,Field> internalFields
CloneUtils
public CloneUtils()
deepClone
public static final <O> O deepClone(O original)
throws Exception
- Throws:
Exception
deepCloneReflection
public static final <O> O deepCloneReflection(O original)
throws Exception
- Throws:
Exception
deepCloneReflectionInternal
protected static final Object deepCloneReflectionInternal(Object original,
Map<Object,Object> cache,
boolean referenceCollectionCopy)
throws Exception
- Throws:
Exception
deepCloneObject
protected static Object deepCloneObject(Object original,
Map<Object,Object> cache)
throws Exception
- Throws:
Exception
deepCloneMap
protected static Object deepCloneMap(Object original,
Map<Object,Object> cache,
boolean referenceCollectionCopy)
throws Exception
- Throws:
Exception
deepCloneList
protected static Object deepCloneList(Object original,
Map<Object,Object> cache,
boolean referenceCollectionCopy)
throws Exception
- Throws:
Exception
instantiate
protected static final Object instantiate(Object original)
throws InstantiationException,
IllegalAccessException
- Throws:
InstantiationException
IllegalAccessException
getFields
public static Field[] getFields(Object object,
boolean includeStatic)
getFields
public static Field[] getFields(Object object,
boolean includeStatic,
boolean includeTransient)
getFields
public static Field[] getFields(Class<?> c,
boolean includeStatic)
getFields
public static Field[] getFields(Class<?> c,
boolean includeStatic,
boolean includeTransient)
internalField
protected static final Field internalField(Object object,
String fieldName)
getClassHierarchy
protected static List<Class<?>> getClassHierarchy(Class<?> c,
boolean includeInterfaces)
Copyright © 2004-2011 The Kuali Foundation. All Rights Reserved.