@InterfaceAudience.Public @InterfaceStability.Evolving public class ReflectionUtils extends Object
Constructor and Description |
---|
ReflectionUtils() |
Modifier and Type | Method and Description |
---|---|
static void |
cloneWritableInto(Writable dst,
Writable src)
Deprecated.
|
static <T> T |
copy(Configuration conf,
T src,
T dst)
Make a copy of the writable object using serialization to a buffer
|
static <T> Class<T> |
getClass(T o)
Return the correctly-typed
Class of the given object. |
static List<Field> |
getDeclaredFieldsIncludingInherited(Class<?> clazz)
Gets all the declared fields of a class including fields declared in
superclasses.
|
static List<Method> |
getDeclaredMethodsIncludingInherited(Class<?> clazz)
Gets all the declared methods of a class including methods declared in
superclasses.
|
static void |
logThreadInfo(org.apache.commons.logging.Log log,
String title,
long minInterval)
Log the current thread stacks at INFO level.
|
static <T> T |
newInstance(Class<T> theClass,
Configuration conf)
Create an object for the given class and initialize it from conf
|
static void |
printThreadInfo(PrintWriter stream,
String title)
Print all of the thread's information and stack traces.
|
static void |
setConf(Object theObject,
Configuration conf)
Check and set 'configuration' if necessary.
|
static void |
setContentionTracing(boolean val) |
public ReflectionUtils()
public static void setConf(Object theObject, Configuration conf)
theObject
- object for which to set configurationconf
- Configurationpublic static <T> T newInstance(Class<T> theClass, Configuration conf)
theClass
- class of which an object is createdconf
- Configurationpublic static void setContentionTracing(boolean val)
public static void printThreadInfo(PrintWriter stream, String title)
stream
- the stream totitle
- a string title for the stack tracepublic static void logThreadInfo(org.apache.commons.logging.Log log, String title, long minInterval)
log
- the logger that logs the stack tracetitle
- a descriptive title for the call stacksminInterval
- the minimum time from the lastpublic static <T> Class<T> getClass(T o)
Class
of the given object.o
- object whose correctly-typed Class
is to be obtainedClass
of the given object.public static <T> T copy(Configuration conf, T src, T dst) throws IOException
src
- the object to copy fromdst
- the object to copy into, which is destroyedIOException
@Deprecated public static void cloneWritableInto(Writable dst, Writable src) throws IOException
IOException
public static List<Field> getDeclaredFieldsIncludingInherited(Class<?> clazz)
public static List<Method> getDeclaredMethodsIncludingInherited(Class<?> clazz)
Copyright © 2015 Apache Software Foundation. All Rights Reserved.