static List<Method> |
MethodUtil.fillMethods(Method[] methods,
ReflectionAccess _accessLevel,
Class<?>... _classes) |
|
static Method |
MethodUtil.findMethod(Class<?> _class,
String _method,
ReflectionAccess _accessLevel,
Class<?>... paramClasses) |
|
static List<Field> |
FieldUtil.getAllField(Class<?> _class,
ReflectionAccess _accessLevel) |
get all fields current class with following condition :
PRIVATE can access all protected , public , private , default field
PROTECTED can access only protected , public
PUBLIC can access only public
DEFAULT can access only protected , public ,default
|
static Map<String,Field> |
FieldUtil.getAllFieldMap(Class<?> _class,
ReflectionAccess _accessLevel) |
|
static List<Field> |
FieldUtil.getAllManyRelField(Class<?> _class,
ReflectionAccess accessLevel) |
|
static Collection<Method> |
MethodUtil.getAllMethod(Class<?> _class,
ReflectionAccess _accessLevel) |
Get methods of current class with following condition :
PRIVATE can access all protected , public , private , default field
PROTECTED can access only protected , public
PUBLIC can access only public
DEFAULT can access only protected , public ,default
|
static List<Field> |
FieldUtil.getAllOneRelField(Class<?> _class,
ReflectionAccess accessLevel) |
|
static List<Method> |
MethodUtil.getAllOverloadMethod(Class<?> _class,
String _method,
ReflectionAccess _accessLevel) |
Get all overloaded method of current class with following condition :
PRIVATE can access all protected , public , private , default field
PROTECTED can access only protected , public
PUBLIC can access only public
DEFAULT can access only protected , public ,default
|
static List<Method> |
MethodUtil.getAllOverrideMethod(Class<?> _class,
String _method,
ReflectionAccess _accessLevel,
Object... _param) |
Get all overloaded method of current class with following condition :
PRIVATE can access all protected , public , private , default field
PROTECTED can access only protected , public
PUBLIC can access only public
DEFAULT can access only protected , public ,default
|
static List<Field> |
FieldUtil.getAllPrimativeField(Class<?> _class,
ReflectionAccess accessLevel) |
|
static List<Field> |
FieldUtil.getAllRelField(Class<?> _class,
ReflectionAccess accessLevel) |
|
static Constructor<?> |
ConstructUtil.getConstructor(Class<?> _class,
ReflectionAccess access,
Type... types) |
|
static Field |
FieldUtil.getField(Class<?> _class,
String _field,
ReflectionAccess _accessLevel) |
Get field current class with following condition :
PRIVATE can access protected , public , private , default field
PROTECTED can access only protected , public
PUBLIC can access only public
DEFAULT can access only protected , public ,default
|
static List<String> |
FieldUtil.getFieldList(Class<?> _class,
ReflectionAccess _accessLevel) |
Get all names field current class with following condition :
PRIVATE can access all protected , public , private , default field
PROTECTED can access only protected , public
PUBLIC can access only public
DEFAULT can access only protected , public ,default
|
static Method |
MethodUtil.getMethod(Class<?> _class,
String _method,
int params,
ReflectionAccess _accessLevel) |
|
static Method |
MethodUtil.getMethod(Class<?> _class,
String _method,
ReflectionAccess _accessLevel,
Class<?>... _classes) |
Get field current class with following condition :
PRIVATE can access all protected , public , private , default field
PROTECTED can access only protected , public
PUBLIC can access only public
DEFAULT can access only protected , public ,default
|
static Method |
MethodUtil.getMethod(Class<?> _class,
String _method,
ReflectionAccess _accessLevel,
Object... _param) |
Get field current class with following condition :
PRIVATE can access all protected , public , private , default field
PROTECTED can access only protected , public
PUBLIC can access only public
DEFAULT can access only protected , public ,default
|
static <T> T |
LogicUnit.setField(Object object,
String property,
Object param,
ReflectionAccess accessLevel) |
|