Class ProxyUtils


  • public abstract class ProxyUtils
    extends BaseUtils
    The utilities class for Proxy
    Since:
    1.0.0
    Author:
    Mercy
    • Constructor Summary

      Constructors 
      Constructor Description
      ProxyUtils()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean isProxyable​(java.lang.Class<?> type)
      class has a non-private constructor with no parameters class is not declared final class does not have non-static, final methods with public, protected or default visibility class is not primitive type class is not array type
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ProxyUtils

        public ProxyUtils()
    • Method Detail

      • isProxyable

        public static boolean isProxyable​(java.lang.Class<?> type)
        • class has a non-private constructor with no parameters
        • class is not declared final
        • class does not have non-static, final methods with public, protected or default visibility
        • class is not primitive type
        • class is not array type
        Parameters:
        type -
        Returns: