@Deprecated public abstract class OperatorsReflect extends Object
Constructor and Description |
---|
OperatorsReflect()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static <O> Operators.Fun<Object[],O> |
constructor(Class<? extends O> objType,
Class<?>... paramTypes)
Deprecated.
|
static <O> Operators.Fun<Object[],O> |
constructor(Constructor<? extends O> cons)
Deprecated.
|
static <O,F> Operators.Fun<O,F> |
field(Class<? super O> objType,
Class<? extends F> fldType,
Field fld)
Deprecated.
|
static <O,F> Operators.Fun<O,F> |
field(Class<? super O> objType,
Class<? extends F> fldType,
String fldName)
Deprecated.
|
static <O,R> Operators.Fun<O,R> |
method(Class<? super O> objType,
Class<? extends R> returnType,
Method method,
Object... params)
Deprecated.
|
static <O,R> Operators.Fun<O,R> |
method(Class<? super O> objType,
Class<? extends R> returnType,
String methodName,
Object... params)
Deprecated.
|
static <R> Operators.Fun<Object[],R> |
method(Object obj,
Class<? extends R> returnType,
Method method)
Deprecated.
|
static <R> Operators.Fun<Object[],R> |
method(Object obj,
Class<? extends R> returnType,
String methodName,
Class<?>... paramTypes)
Deprecated.
|
static <R> Operators.Fun<Object[],R> |
methodStatic(Class<?> objType,
Class<? extends R> returnType,
String methodName,
Class<?>... paramTypes)
Deprecated.
|
public static <O,F> Operators.Fun<O,F> field(Class<? super O> objType, Class<? extends F> fldType, String fldName)
public static <O,F> Operators.Fun<O,F> field(Class<? super O> objType, Class<? extends F> fldType, Field fld)
public static <O> Operators.Fun<Object[],O> constructor(Class<? extends O> objType, Class<?>... paramTypes)
public static <O> Operators.Fun<Object[],O> constructor(Constructor<? extends O> cons)
public static <O,R> Operators.Fun<O,R> method(Class<? super O> objType, Class<? extends R> returnType, String methodName, Object... params)
public static <O,R> Operators.Fun<O,R> method(Class<? super O> objType, Class<? extends R> returnType, Method method, Object... params)
public static <R> Operators.Fun<Object[],R> method(Object obj, Class<? extends R> returnType, String methodName, Class<?>... paramTypes)
public static <R> Operators.Fun<Object[],R> methodStatic(Class<?> objType, Class<? extends R> returnType, String methodName, Class<?>... paramTypes)
public static <R> Operators.Fun<Object[],R> method(Object obj, Class<? extends R> returnType, Method method)
see also the complete user documentation .