public class ReflectionUtil extends Object
Modifier and Type | Field and Description |
---|---|
protected static String[] |
EMPTY_STRING |
protected static String[] |
PRIMITIVE_NAMES |
protected static Class[] |
PRIMITIVES |
Modifier and Type | Method and Description |
---|---|
static Class |
forName(String name) |
protected static Class |
forNamePrimitive(String name) |
static Method |
getMethod(Object base,
Object property,
Class[] paramTypes)
Returns a method based on the criteria
|
static PropertyDescriptor |
getPropertyDescriptor(Object base,
Object property) |
protected static String |
paramString(Class[] types) |
static Class[] |
toTypeArray(String[] s)
Converts an array of Class names to Class types
|
static String[] |
toTypeNameArray(Class[] c)
Converts an array of Class types to Class names
|
protected static final String[] EMPTY_STRING
protected static final String[] PRIMITIVE_NAMES
protected static final Class[] PRIMITIVES
public static Class forName(String name) throws ClassNotFoundException
ClassNotFoundException
public static Class[] toTypeArray(String[] s) throws ClassNotFoundException
s
- ClassNotFoundException
public static String[] toTypeNameArray(Class[] c)
c
- public static Method getMethod(Object base, Object property, Class[] paramTypes) throws MethodNotFoundException
base
- the object that owns the methodproperty
- the name of the methodparamTypes
- the parameter types to useMethodNotFoundException
public static PropertyDescriptor getPropertyDescriptor(Object base, Object property) throws ELException, PropertyNotFoundException
base
- The base objectproperty
- The propertyELException
PropertyNotFoundException
Copyright © 2014 GlassFish Community. All rights reserved.