Package net.sf.cglib.reflect
Class FastClass
- java.lang.Object
-
- net.sf.cglib.reflect.FastClass
-
public abstract class FastClass extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFastClass.Generator
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static FastClasscreate(Class type)static FastClasscreate(ClassLoader loader, Class type)booleanequals(Object o)FastConstructorgetConstructor(Class[] parameterTypes)FastConstructorgetConstructor(Constructor constructor)abstract intgetIndex(Class[] parameterTypes)Return the index of the matching constructor.abstract intgetIndex(String name, Class[] parameterTypes)Return the index of the matching method.abstract intgetIndex(Signature sig)ClassgetJavaClass()abstract intgetMaxIndex()Returns the maximum method index for this class.FastMethodgetMethod(Method method)FastMethodgetMethod(String name, Class[] parameterTypes)StringgetName()protected static StringgetSignatureWithoutReturnType(String name, Class[] parameterTypes)inthashCode()abstract Objectinvoke(int index, Object obj, Object[] args)Invoke the method with the specified index.Objectinvoke(String name, Class[] parameterTypes, Object obj, Object[] args)ObjectnewInstance()abstract ObjectnewInstance(int index, Object[] args)Create a new instance using the specified constructor index and arguments.ObjectnewInstance(Class[] parameterTypes, Object[] args)StringtoString()
-
-
-
Constructor Detail
-
FastClass
protected FastClass()
-
FastClass
protected FastClass(Class type)
-
-
Method Detail
-
create
public static FastClass create(ClassLoader loader, Class type)
-
invoke
public Object invoke(String name, Class[] parameterTypes, Object obj, Object[] args) throws InvocationTargetException
- Throws:
InvocationTargetException
-
newInstance
public Object newInstance() throws InvocationTargetException
- Throws:
InvocationTargetException
-
newInstance
public Object newInstance(Class[] parameterTypes, Object[] args) throws InvocationTargetException
- Throws:
InvocationTargetException
-
getMethod
public FastMethod getMethod(Method method)
-
getConstructor
public FastConstructor getConstructor(Constructor constructor)
-
getMethod
public FastMethod getMethod(String name, Class[] parameterTypes)
-
getConstructor
public FastConstructor getConstructor(Class[] parameterTypes)
-
getName
public String getName()
-
getJavaClass
public Class getJavaClass()
-
getIndex
public abstract int getIndex(String name, Class[] parameterTypes)
Return the index of the matching method. The index may be used later to invoke the method with less overhead. If more than one method matches (i.e. they differ by return type only), one is chosen arbitrarily.- Parameters:
name- the method nameparameterTypes- the parameter array- Returns:
- the index, or
-1if none is found. - See Also:
invoke(int, Object, Object[])
-
getIndex
public abstract int getIndex(Class[] parameterTypes)
Return the index of the matching constructor. The index may be used later to create a new instance with less overhead.- Parameters:
parameterTypes- the parameter array- Returns:
- the constructor index, or
-1if none is found. - See Also:
newInstance(int, Object[])
-
invoke
public abstract Object invoke(int index, Object obj, Object[] args) throws InvocationTargetException
Invoke the method with the specified index.- Parameters:
index- the method indexobj- the object the underlying method is invoked fromargs- the arguments used for the method call- Throws:
InvocationTargetException- if the underlying method throws an exception- See Also:
getIndex(name, Class[])
-
newInstance
public abstract Object newInstance(int index, Object[] args) throws InvocationTargetException
Create a new instance using the specified constructor index and arguments.- Parameters:
index- the constructor indexargs- the arguments passed to the constructor- Throws:
InvocationTargetException- if the constructor throws an exception- See Also:
getIndex(java.lang.Class[])
-
getIndex
public abstract int getIndex(Signature sig)
-
getMaxIndex
public abstract int getMaxIndex()
Returns the maximum method index for this class.
-
-