Class CachedMethod

  • All Implemented Interfaces:
    java.lang.Cloneable, java.lang.Comparable

    public class CachedMethod
    extends MetaMethod
    implements java.lang.Comparable
    • Constructor Detail

      • CachedMethod

        public CachedMethod​(CachedClass clazz,
                            java.lang.reflect.Method method)
      • CachedMethod

        public CachedMethod​(java.lang.reflect.Method method)
    • Method Detail

      • find

        public static CachedMethod find​(java.lang.reflect.Method method)
      • getName

        public java.lang.String getName()
        Description copied from class: MetaMethod
        Returns the name of the method represented by this class
        Specified by:
        getName in class MetaMethod
        Returns:
        name of this method
      • getDescriptor

        public java.lang.String getDescriptor()
        Description copied from class: MetaMethod
        Return a descriptor of this method based on the return type and parameters of this method.
        Overrides:
        getDescriptor in class MetaMethod
      • invoke

        public final java.lang.Object invoke​(java.lang.Object object,
                                             java.lang.Object[] arguments)
        Description copied from class: MetaMethod
        Invoke this method
        Specified by:
        invoke in class MetaMethod
        Parameters:
        object - The object this method should be invoked on
        arguments - The arguments for the method if applicable
        Returns:
        The return value of the invocation
      • getReturnType

        public java.lang.Class getReturnType()
        Description copied from class: MetaMethod
        Access the return type for this method
        Specified by:
        getReturnType in class MetaMethod
        Returns:
        the return type of this method
      • getParamsCount

        public int getParamsCount()
      • getModifiers

        public int getModifiers()
        Description copied from class: MetaMethod
        Returns the modifiers for this method
        Specified by:
        getModifiers in class MetaMethod
        Returns:
        modifiers as an int.
      • getSignature

        public java.lang.String getSignature()
        Description copied from class: MetaMethod
        Returns the signature of this method
        Overrides:
        getSignature in class MetaMethod
        Returns:
        The signature of this method
      • setAccessible

        public final java.lang.reflect.Method setAccessible()
      • isStatic

        public boolean isStatic()
        Description copied from class: MetaMethod
        Returns whether or not this method is static.
        Overrides:
        isStatic in class MetaMethod
        Returns:
        true if this method is static
      • compareTo

        public int compareTo​(java.lang.Object o)
        Specified by:
        compareTo in interface java.lang.Comparable
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Description copied from class: MetaMethod
        Returns a string representation of this method
        Overrides:
        toString in class MetaMethod
      • createStaticMetaMethodSite

        public CallSite createStaticMetaMethodSite​(CallSite site,
                                                   MetaClassImpl metaClass,
                                                   java.lang.Class[] params)
      • getCachedMethod

        public java.lang.reflect.Method getCachedMethod()