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

com.yammer.dropwizard.util.Generics Maven / Gradle / Ivy

package com.yammer.dropwizard.util;

import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;

import static com.google.common.base.Preconditions.checkNotNull;

/**
 * Helper methods for class type parameters.
 * @see Super Type Tokens
 */
public class Generics {
    private Generics() { /* singleton */ }

    /**
     * Finds the type parameter for the given class which is assignable to the bound class.
     *
     * @param klass    a parameterized class
     * @param bound    the type bound
     * @param       the type bound
     * @return the class's type parameter
     */
    @SuppressWarnings("unchecked")
    public static  Class getTypeParameter(Class klass, Class bound) {
        Type t = checkNotNull(klass);
        while (t instanceof Class) {
            t = ((Class) t).getGenericSuperclass();
        }
        /* This is not guaranteed to work for all cases with convoluted piping
         * of type parameters: but it can at least resolve straight-forward
         * extension with single type parameter (as per [Issue-89]).
         * And when it fails to do that, will indicate with specific exception.
         */
        if (t instanceof ParameterizedType) {
            // should typically have one of type parameters (first one) that matches:
            for (Type param : ((ParameterizedType) t).getActualTypeArguments()) {
                if (param instanceof Class) {
                    final Class cls = (Class) param;
                    if (bound.isAssignableFrom(cls)) {
                        return (Class) cls;
                    }
                }
            }
        }
        throw new IllegalStateException("Cannot figure out type parameterization for " + klass.getName());
    }

    /**
     * Finds the type parameter for the given class.
     *
     * @param klass    a parameterized class
     * @return the class's type parameter
     */
    public static Class getTypeParameter(Class klass) {
        return getTypeParameter(klass, Object.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy