Java java.lang.reflect Proxy fields, constructors, methods, implement or subclass

Example usage for Java java.lang.reflect Proxy fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.lang.reflect Proxy.

The text is from its open source code.

Method

InvocationHandlergetInvocationHandler(Object proxy)
Returns the invocation handler for the specified proxy instance.
ClassgetProxyClass(ClassLoader loader, Class... interfaces)
Returns the java.lang.Class object for a proxy class given a class loader and an array of interfaces.
booleanisProxyClass(Class cl)
Returns true if the given class is a proxy class.
ObjectnewProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler h)
Returns a proxy instance for the specified interfaces that dispatches method invocations to the specified invocation handler.
ObjectnewProxyInstance(Class caller, Constructor cons, InvocationHandler h)