Java com.google.common.reflect Reflection fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.reflect Reflection fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.reflect Reflection.

The text is from its open source code.

Method

StringgetPackageName(Class clazz)
Returns the package name of clazz according to the Java Language Specification (section 6.7).
StringgetPackageName(String classFullName)
Returns the package name of classFullName according to the Java Language Specification (section 6.7).
voidinitialize(Class... classes)
Ensures that the given classes are initialized, as described in JLS Section 12.4.2.
TnewProxy(Class interfaceType, InvocationHandler handler)
Returns a proxy instance that implements interfaceType by dispatching method invocations to handler .