Class ProxyUtils

  • All Implemented Interfaces:
    Utils

    public abstract class ProxyUtils
    extends java.lang.Object
    implements Utils
    The utilities class for Proxy
    Since:
    1.0.0
    Author:
    Mercy
    • 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
    • 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: