All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.tools.reflect.Reflect Maven / Gradle / Ivy

There is a newer version: 3.19.15
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.jooq.tools.reflect;

import java.lang.invoke.MethodHandles;
import java.lang.invoke.MethodHandles.Lookup;
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Member;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.lang.reflect.Proxy;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;

/**
 * A wrapper for an {@link Object} or {@link Class} upon which reflective calls
 * can be made.
 * 

* An example of using Reflect is


 * // Static import all reflection methods to decrease verbosity
 * import static org.joor.Reflect.*;
 *
 * // Wrap an Object / Class / class name with the on() method:
 * on("java.lang.String")
 * // Invoke constructors using the create() method:
 * .create("Hello World")
 * // Invoke methods using the call() method:
 * .call("toString")
 * // Retrieve the wrapped object
 * 
* * @author Lukas Eder * @author Irek Matysiewicz * @author Thomas Darimont */ public class Reflect { // --------------------------------------------------------------------- // Static API used as entrance points to the fluent API // --------------------------------------------------------------------- /** * Compile a class at runtime and reflect on it. *

* For example: *


     * Supplier<String> supplier = Reflect.compile("org.joor.Test", """
     *   package org.joor;
     *   class Test implements java.util.function.Supplier<String> {
     *     public String get() {
     *       return "Hello World!";
     *     }
     *   }
     *   """).create().get();
     * 
* * @param name The qualified class name * @param content The source code for the class * @return A wrapped {@link Class} * @throws ReflectException if anything went wrong compiling the class. */ public static Reflect compile(String name, String content) throws ReflectException { return compile(name, content, new CompileOptions()); } /** * Compile a class at runtime and reflect on it. *

* For example: *


     * Supplier<String> supplier = Reflect.compile("org.joor.Test", """
     *   package org.joor;
     *   class Test implements java.util.function.Supplier<String> {
     *     public String get() {
     *       return "Hello World!";
     *     }
     *   }
     *   """).create().get();
     * 
* * @param name The qualified class name * @param content The source code for the class * @param options compiler options * @return A wrapped {@link Class} * @throws ReflectException if anything went wrong compiling the class. */ public static Reflect compile(String name, String content, CompileOptions options) throws ReflectException { return onClass(Compile.compile(name, content, options)); } /** * Annotation-process a class at runtime. *

* This works like {@link #compile(String, String)}, but adds the * -proc:only {@link CompileOptions} and thus does not produce any * compilation output. *

* For example: *


     * Supplier<String> supplier = Reflect.compile("org.joor.Test", """
     *   package org.joor;
     *   @MyAnnotation
     *   class Test implements java.util.function.Supplier<String> {
     *     public String get() {
     *       return "Hello World!";
     *     }
     *   }
     *   """).create().get();
     * 
* * @param name The qualified class name * @param content The source code for the class * @throws ReflectException if anything went wrong compiling the class. */ public static void process(String name, String content) throws ReflectException { process(name, content, new CompileOptions()); } /** * Annotation-process a class at runtime. *

* This works like {@link #compile(String, String)}, but adds the * -proc:only {@link CompileOptions} and thus does not produce any * compilation output. *

* For example: *


     * Supplier<String> supplier = Reflect.compile("org.joor.Test", """
     *   package org.joor;
     *   @MyAnnotation
     *   class Test implements java.util.function.Supplier<String> {
     *     public String get() {
     *       return "Hello World!";
     *     }
     *   }
     *   """).create().get();
     * 
* * @param name The qualified class name * @param content The source code for the class * @param options compiler options * @return A wrapped {@link Class} * @throws ReflectException if anything went wrong compiling the class. */ public static void process(String name, String content, CompileOptions options) throws ReflectException { if (!options.hasOption("-proc:only")) { List o = new ArrayList<>(options.options); o.add("-proc:only"); options = options.options(o); } Compile.compile(name, content, options, false); } /** * Wrap a class name. *

* This is the same as calling on(Class.forName(name)) * * @param name A fully qualified class name * @return A wrapped class object, to be used for further reflection. * @throws ReflectException If any reflection exception occurred. * @see #onClass(Class) * @deprecated [#78] 0.9.11, use {@link #onClass(String)} instead. */ @Deprecated public static Reflect on(String name) throws ReflectException { return onClass(name); } /** * Wrap a class name, loading it via a given class loader. *

* This is the same as calling * on(Class.forName(name, classLoader)) * * @param name A fully qualified class name. * @param classLoader The class loader in whose context the class should be * loaded. * @return A wrapped class object, to be used for further reflection. * @throws ReflectException If any reflection exception occurred. * @see #onClass(Class) * @deprecated [#78] 0.9.11, use {@link #onClass(String, ClassLoader)} instead. */ @Deprecated public static Reflect on(String name, ClassLoader classLoader) throws ReflectException { return onClass(name, classLoader); } /** * Wrap a class. *

* Use this when you want to access static fields and methods on a * {@link Class} object, or as a basis for constructing objects of that * class using {@link #create(Object...)} * * @param clazz The class to be wrapped * @return A wrapped class object, to be used for further reflection. * @deprecated [#78] 0.9.11, use {@link #onClass(Class)} instead. */ @Deprecated public static Reflect on(Class clazz) { return onClass(clazz); } /** * Wrap a class name. *

* This is the same as calling onClass(Class.forName(name)) * * @param name A fully qualified class name * @return A wrapped class object, to be used for further reflection. * @throws ReflectException If any reflection exception occurred. * @see #onClass(Class) */ public static Reflect onClass(String name) throws ReflectException { return onClass(forName(name)); } /** * Wrap a class name, loading it via a given class loader. *

* This is the same as calling * onClass(Class.forName(name, classLoader)) * * @param name A fully qualified class name. * @param classLoader The class loader in whose context the class should be * loaded. * @return A wrapped class object, to be used for further reflection. * @throws ReflectException If any reflection exception occurred. * @see #onClass(Class) */ public static Reflect onClass(String name, ClassLoader classLoader) throws ReflectException { return onClass(forName(name, classLoader)); } /** * Wrap a class. *

* Use this when you want to access static fields and methods on a * {@link Class} object, or as a basis for constructing objects of that * class using {@link #create(Object...)} * * @param clazz The class to be wrapped * @return A wrapped class object, to be used for further reflection. */ public static Reflect onClass(Class clazz) { return new Reflect(clazz); } /** * Wrap an object. *

* Use this when you want to access instance fields and methods on any * {@link Object} * * @param object The object to be wrapped * @return A wrapped object, to be used for further reflection. */ public static Reflect on(Object object) { return new Reflect(object == null ? Object.class : object.getClass(), object); } private static Reflect on(Class type, Object object) { return new Reflect(type, object); } /** * Get the initialisation or default value for any given type. *

* This returns: *

    *
  • null for reference types (including wrapper types)
  • *
  • 0 for numeric primitive types (including * char)
  • *
  • false for the boolean primitive type. *
*/ @SuppressWarnings("unchecked") public static T initValue(Class type) { return type == boolean.class ? (T) Boolean.FALSE : type == byte.class ? (T) Byte.valueOf((byte) 0) : type == short.class ? (T) Short.valueOf((short) 0) : type == int.class ? (T) Integer.valueOf(0) : type == long.class ? (T) Long.valueOf(0L) : type == double.class ? (T) Double.valueOf(0.0) : type == float.class ? (T) Float.valueOf(0.0f) : type == char.class ? (T) Character.valueOf((char) 0) : (T) null; } /** * Conveniently render an {@link AccessibleObject} accessible. *

* To prevent {@link SecurityException}, this is only done if the argument * object and its declaring class are non-public. * * @param accessible The object to render accessible * @return The argument object rendered accessible */ public static T accessible(T accessible) { if (accessible == null) { return null; } if (accessible instanceof Member) { Member member = (Member) accessible; if (Modifier.isPublic(member.getModifiers()) && Modifier.isPublic(member.getDeclaringClass().getModifiers())) { return accessible; } } // [jOOQ #3392] The accessible flag is set to false by default, also for public members. if (!accessible.isAccessible()) accessible.setAccessible(true); return accessible; } // --------------------------------------------------------------------- // Members // --------------------------------------------------------------------- static final Constructor CACHED_LOOKUP_CONSTRUCTOR; static { Constructor result; if (true) result = null; else try { try { Optional.class.getMethod("stream"); result = null; } // [jOOQ/jOOR#57] [jOOQ/jOOQ#9157] // A JDK 9 guard that prevents "Illegal reflective access operation" // warnings when running the below on JDK 9+ catch (NoSuchMethodException e) { result = MethodHandles.Lookup.class.getDeclaredConstructor(Class.class); if (!result.isAccessible()) result.setAccessible(true); } } // Can no longer access the above in JDK 9 catch (Throwable ignore) { result = null; } CACHED_LOOKUP_CONSTRUCTOR = result; } /** * The type of the wrapped object. */ private final Class type; /** * The wrapped object. */ private final Object object; // --------------------------------------------------------------------- // Constructors // --------------------------------------------------------------------- private Reflect(Class type) { this(type, type); } private Reflect(Class type, Object object) { this.type = type; this.object = object; } // --------------------------------------------------------------------- // Fluent Reflection API // --------------------------------------------------------------------- /** * Get the wrapped object * * @param A convenience generic parameter for automatic unsafe casting */ @SuppressWarnings("unchecked") public T get() { return (T) object; } /** * Set a field value. *

* This is roughly equivalent to {@link Field#set(Object, Object)}. If the * wrapped object is a {@link Class}, then this will set a value to a static * member field. If the wrapped object is any other {@link Object}, then * this will set a value to an instance member field. *

* This method is also capable of setting the value of (static) final * fields. This may be convenient in situations where no * {@link SecurityManager} is expected to prevent this, but do note that * (especially static) final fields may already have been inlined by the * javac and/or JIT and relevant code deleted from the runtime verison of * your program, so setting these fields might not have any effect on your * execution. *

* For restrictions of usage regarding setting values on final fields check: * http://stackoverflow.com/questions/3301635/change-private-static-final-field-using-java-reflection * ... and http://pveentjer.blogspot.co.at/2017/01/final-static-boolean-jit.html * * @param name The field name * @param value The new field value * @return The same wrapped object, to be used for further reflection. * @throws ReflectException If any reflection exception occurred. */ public Reflect set(String name, Object value) throws ReflectException { try { Field field = field0(name); if ((field.getModifiers() & Modifier.FINAL) == Modifier.FINAL) { try { Field modifiersField = Field.class.getDeclaredField("modifiers"); modifiersField.setAccessible(true); modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); } // [#48] E.g. Android doesn't have this field catch (NoSuchFieldException ignore) {} } field.set(object, unwrap(value)); return this; } catch (Exception e) { throw new ReflectException(e); } } /** * Get a field value. *

* This is roughly equivalent to {@link Field#get(Object)}. If the wrapped * object is a {@link Class}, then this will get a value from a static * member field. If the wrapped object is any other {@link Object}, then * this will get a value from an instance member field. *

* If you want to "navigate" to a wrapped version of the field, use * {@link #field(String)} instead. * * @param name The field name * @return The field value * @throws ReflectException If any reflection exception occurred. * @see #field(String) */ public T get(String name) throws ReflectException { return field(name).get(); } /** * Get a wrapped field. *

* This is roughly equivalent to {@link Field#get(Object)}. If the wrapped * object is a {@link Class}, then this will wrap a static member field. If * the wrapped object is any other {@link Object}, then this wrap an * instance member field. * * @param name The field name * @return The wrapped field * @throws ReflectException If any reflection exception occurred. */ public Reflect field(String name) throws ReflectException { try { Field field = field0(name); return on(field.getType(), field.get(object)); } catch (Exception e) { throw new ReflectException(e); } } private Field field0(String name) throws ReflectException { Class t = type(); // Try getting a public field try { return accessible(t.getField(name)); } // Try again, getting a non-public field catch (NoSuchFieldException e) { do { try { return accessible(t.getDeclaredField(name)); } catch (NoSuchFieldException ignore) {} t = t.getSuperclass(); } while (t != null); throw new ReflectException(e); } } /** * Get a Map containing field names and wrapped values for the fields' * values. *

* If the wrapped object is a {@link Class}, then this will return static * fields. If the wrapped object is any other {@link Object}, then this will * return instance fields. *

* These two calls are equivalent


     * on(object).field("myField");
     * on(object).fields().get("myField");
     * 
* * @return A map containing field names and wrapped values. */ public Map fields() { Map result = new LinkedHashMap(); Class t = type(); do { for (Field field : t.getDeclaredFields()) { if (type != object ^ Modifier.isStatic(field.getModifiers())) { String name = field.getName(); if (!result.containsKey(name)) result.put(name, field(name)); } } t = t.getSuperclass(); } while (t != null); return result; } /** * Call a method by its name. *

* This is a convenience method for calling * call(name, new Object[0]) * * @param name The method name * @return The wrapped method result or the same wrapped object if the * method returns void, to be used for further * reflection. * @throws ReflectException If any reflection exception occurred. * @see #call(String, Object...) */ public Reflect call(String name) throws ReflectException { return call(name, new Object[0]); } /** * Call a method by its name. *

* This is roughly equivalent to {@link Method#invoke(Object, Object...)}. * If the wrapped object is a {@link Class}, then this will invoke a static * method. If the wrapped object is any other {@link Object}, then this will * invoke an instance method. *

* Just like {@link Method#invoke(Object, Object...)}, this will try to wrap * primitive types or unwrap primitive type wrappers if applicable. If * several methods are applicable, by that rule, the first one encountered * is called. i.e. when calling


     * on(...).call("method", 1, 1);
     * 
The first of the following methods will be called: *

     * public void method(int param1, Integer param2);
     * public void method(Integer param1, int param2);
     * public void method(Number param1, Number param2);
     * public void method(Number param1, Object param2);
     * public void method(int param1, Object param2);
     * 
*

* The best matching method is searched for with the following strategy: *

    *
  1. public method with exact signature match in class hierarchy
  2. *
  3. non-public method with exact signature match on declaring class
  4. *
  5. public method with similar signature in class hierarchy
  6. *
  7. non-public method with similar signature on declaring class
  8. *
* * @param name The method name * @param args The method arguments * @return The wrapped method result or the same wrapped object if the * method returns void, to be used for further * reflection. * @throws ReflectException If any reflection exception occurred. */ public Reflect call(String name, Object... args) throws ReflectException { Class[] types = types(args); // Try invoking the "canonical" method, i.e. the one with exact // matching argument types try { Method method = exactMethod(name, types); return on(method, object, args); } // If there is no exact match, try to find a method that has a "similar" // signature if primitive argument types are converted to their wrappers catch (NoSuchMethodException e) { try { Method method = similarMethod(name, types); return on(method, object, args); } catch (NoSuchMethodException e1) { throw new ReflectException(e1); } } } /** * Searches a method with the exact same signature as desired. *

* If a public method is found in the class hierarchy, this method is returned. * Otherwise a private method with the exact same signature is returned. * If no exact match could be found, we let the {@code NoSuchMethodException} pass through. */ private Method exactMethod(String name, Class[] types) throws NoSuchMethodException { Class t = type(); // first priority: find a public method with exact signature match in class hierarchy try { return t.getMethod(name, types); } // second priority: find a private method with exact signature match on declaring class catch (NoSuchMethodException e) { do { try { return t.getDeclaredMethod(name, types); } catch (NoSuchMethodException ignore) {} t = t.getSuperclass(); } while (t != null); throw new NoSuchMethodException(); } } /** * Searches a method with a similar signature as desired using * {@link #isSimilarSignature(java.lang.reflect.Method, String, Class[])}. *

* First public methods are searched in the class hierarchy, then private * methods on the declaring class. If a method could be found, it is * returned, otherwise a {@code NoSuchMethodException} is thrown. */ private Method similarMethod(String name, Class[] types) throws NoSuchMethodException { Class t = type(); // first priority: find a public method with a "similar" signature in class hierarchy // similar interpreted in when primitive argument types are converted to their wrappers for (Method method : t.getMethods()) { if (isSimilarSignature(method, name, types)) { return method; } } // second priority: find a non-public method with a "similar" signature on declaring class do { for (Method method : t.getDeclaredMethods()) { if (isSimilarSignature(method, name, types)) { return method; } } t = t.getSuperclass(); } while (t != null); throw new NoSuchMethodException("No similar method " + name + " with params " + Arrays.toString(types) + " could be found on type " + type() + "."); } /** * Determines if a method has a "similar" signature, especially if wrapping * primitive argument types would result in an exactly matching signature. */ private boolean isSimilarSignature(Method possiblyMatchingMethod, String desiredMethodName, Class[] desiredParamTypes) { return possiblyMatchingMethod.getName().equals(desiredMethodName) && match(possiblyMatchingMethod.getParameterTypes(), desiredParamTypes); } /** * Call a constructor. *

* This is a convenience method for calling * create(new Object[0]) * * @return The wrapped new object, to be used for further reflection. * @throws ReflectException If any reflection exception occurred. * @see #create(Object...) */ public Reflect create() throws ReflectException { return create(new Object[0]); } /** * Call a constructor. *

* This is roughly equivalent to {@link Constructor#newInstance(Object...)}. * If the wrapped object is a {@link Class}, then this will create a new * object of that class. If the wrapped object is any other {@link Object}, * then this will create a new object of the same type. *

* Just like {@link Constructor#newInstance(Object...)}, this will try to * wrap primitive types or unwrap primitive type wrappers if applicable. If * several constructors are applicable, by that rule, the first one * encountered is called. i.e. when calling


     * on(C.class).create(1, 1);
     * 
The first of the following constructors will be applied: *

     * public C(int param1, Integer param2);
     * public C(Integer param1, int param2);
     * public C(Number param1, Number param2);
     * public C(Number param1, Object param2);
     * public C(int param1, Object param2);
     * 
* * @param args The constructor arguments * @return The wrapped new object, to be used for further reflection. * @throws ReflectException If any reflection exception occurred. */ public Reflect create(Object... args) throws ReflectException { Class[] types = types(args); // Try invoking the "canonical" constructor, i.e. the one with exact // matching argument types try { Constructor constructor = type().getDeclaredConstructor(types); return on(constructor, args); } // If there is no exact match, try to find one that has a "similar" // signature if primitive argument types are converted to their wrappers catch (NoSuchMethodException e) { for (Constructor constructor : type().getDeclaredConstructors()) { if (match(constructor.getParameterTypes(), types)) { return on(constructor, args); } } throw new ReflectException(e); } } /** * Create a proxy for the wrapped object allowing to typesafely invoke methods * on it using a custom interface. * * @param proxyType The interface type that is implemented by the proxy * @return A proxy for the wrapped object */ public

P as(Class

proxyType) { return as(proxyType, new Class[0]); } /** * Create a proxy for the wrapped object allowing to typesafely invoke * methods on it using a custom interface. * * @param proxyType The interface type that is implemented by the proxy * @param additionalInterfaces Additional interfaces that are implemented by * the proxy * @return A proxy for the wrapped object */ @SuppressWarnings("unchecked") public

P as(final Class

proxyType, final Class... additionalInterfaces) { final boolean isMap = (object instanceof Map); final InvocationHandler handler = new InvocationHandler() { @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { String name = method.getName(); // Actual method name matches always come first try { return on(type, object).call(name, args).get(); } // [#14] Emulate POJO behaviour on wrapped map objects catch (ReflectException e) { if (isMap) { Map map = (Map) object; int length = (args == null ? 0 : args.length); if (length == 0 && name.startsWith("get")) { return map.get(property(name.substring(3))); } else if (length == 0 && name.startsWith("is")) { return map.get(property(name.substring(2))); } else if (length == 1 && name.startsWith("set")) { map.put(property(name.substring(3)), args[0]); return null; } } if (method.isDefault()) { Lookup proxyLookup = null; // Java 9 version if (CACHED_LOOKUP_CONSTRUCTOR == null) { proxyLookup = MethodHandles .privateLookupIn(proxyType, MethodHandles.lookup()) .in(proxyType); // Java 9 version for Java 8 distribution (jOOQ Open Source Edition) if (proxyLookup == null) proxyLookup = onClass(MethodHandles.class) .call("privateLookupIn", proxyType, MethodHandles.lookup()) .call("in", proxyType) . get(); } // Java 8 version else proxyLookup = CACHED_LOOKUP_CONSTRUCTOR.newInstance(proxyType); return proxyLookup.unreflectSpecial(method, proxyType) .bindTo(proxy) .invokeWithArguments(args); } throw e; } } }; Class[] interfaces = new Class[1 + additionalInterfaces.length]; interfaces[0] = proxyType; System.arraycopy(additionalInterfaces, 0, interfaces, 1, additionalInterfaces.length); return (P) Proxy.newProxyInstance(proxyType.getClassLoader(), interfaces, handler); } /** * Get the POJO property name of an getter/setter */ private static String property(String string) { int length = string.length(); if (length == 0) { return ""; } else if (length == 1) { return string.toLowerCase(); } else { return string.substring(0, 1).toLowerCase() + string.substring(1); } } // --------------------------------------------------------------------- // Object API // --------------------------------------------------------------------- /** * Check whether two arrays of types match, converting primitive types to * their corresponding wrappers. */ private boolean match(Class[] declaredTypes, Class[] actualTypes) { if (declaredTypes.length == actualTypes.length) { for (int i = 0; i < actualTypes.length; i++) { if (actualTypes[i] == NULL.class) continue; if (wrapper(declaredTypes[i]).isAssignableFrom(wrapper(actualTypes[i]))) continue; return false; } return true; } else { return false; } } @Override public int hashCode() { return object.hashCode(); } @Override public boolean equals(Object obj) { if (obj instanceof Reflect) { return object.equals(((Reflect) obj).get()); } return false; } @Override public String toString() { return String.valueOf(object); } // --------------------------------------------------------------------- // Utility methods // --------------------------------------------------------------------- /** * Wrap an object created from a constructor */ private static Reflect on(Constructor constructor, Object... args) throws ReflectException { try { return on(constructor.getDeclaringClass(), accessible(constructor).newInstance(args)); } catch (Exception e) { throw new ReflectException(e); } } /** * Wrap an object returned from a method */ private static Reflect on(Method method, Object object, Object... args) throws ReflectException { try { accessible(method); if (method.getReturnType() == void.class) { method.invoke(object, args); return on(object); } else { return on(method.invoke(object, args)); } } catch (Exception e) { throw new ReflectException(e); } } /** * Unwrap an object */ private static Object unwrap(Object object) { if (object instanceof Reflect) { return ((Reflect) object).get(); } return object; } /** * Get an array of types for an array of objects * * @see Object#getClass() */ private static Class[] types(Object... values) { if (values == null) { return new Class[0]; } Class[] result = new Class[values.length]; for (int i = 0; i < values.length; i++) { Object value = values[i]; result[i] = value == null ? NULL.class : value.getClass(); } return result; } /** * Load a class * * @see Class#forName(String) */ private static Class forName(String name) throws ReflectException { try { return Class.forName(name); } catch (Exception e) { throw new ReflectException(e); } } private static Class forName(String name, ClassLoader classLoader) throws ReflectException { try { return Class.forName(name, true, classLoader); } catch (Exception e) { throw new ReflectException(e); } } /** * Get the type of the wrapped object. * * @see Object#getClass() */ public Class type() { return type; } /** * Get a wrapper type for a primitive type, or the argument type itself, if * it is not a primitive type. */ @SuppressWarnings("unchecked") public static Class wrapper(Class type) { if (type == null) return null; else if (type.isPrimitive()) { if (boolean.class == type) return (Class) Boolean.class; else if (int.class == type) return (Class) Integer.class; else if (long.class == type) return (Class) Long.class; else if (short.class == type) return (Class) Short.class; else if (byte.class == type) return (Class) Byte.class; else if (double.class == type) return (Class) Double.class; else if (float.class == type) return (Class) Float.class; else if (char.class == type) return (Class) Character.class; else if (void.class == type) return (Class) Void.class; } return type; } private static class NULL {} }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy