Java Reflection Generic Type from Class getGenericInterfacesActualTypes(Collection types, Class aClass)

Here you can find the source of getGenericInterfacesActualTypes(Collection types, Class aClass)

Description

get Generic Interfaces Actual Types

License

Apache License

Declaration

public static void getGenericInterfacesActualTypes(Collection<Type> types, Class aClass) 

Method Source Code


//package com.java2s;
/*//from   www.j a  v  a2  s .  c om
 * Copyright (C) 2013 the original author or authors.
 * See the notice.md file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * 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
 *
 *     http://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.
 */

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

import java.util.Arrays;
import java.util.Collection;

public class Main {
    public static void getGenericInterfacesActualTypes(Collection<Type> types, Class aClass) {
        if (aClass != null && types != null) {
            Type[] interfaces = aClass.getGenericInterfaces();
            for (Type anInterface : interfaces) {
                if (anInterface instanceof ParameterizedType) {
                    ParameterizedType parameterizedType = (ParameterizedType) anInterface;
                    Type[] actualTypes = parameterizedType.getActualTypeArguments();
                    types.addAll(Arrays.asList(actualTypes));
                } else if (anInterface instanceof Class) {
                    Class typeClass = (Class) anInterface;
                    getGenericInterfacesActualTypes(types, typeClass);
                }
            }
        }
    }
}

Related

  1. getGenericClassType(Class clazz, Class filterClass)
  2. getGenericDeclaringType(Class baseClass, Class declaringClass)
  3. getGenericFirstClass(Type type)
  4. getGenericInterface(final Class sourceClass, final Class genericInterface)
  5. getGenericInterfaceParamType(Class cls, Class rawType)
  6. getGenericParameter(Class clazz, int index)
  7. getGenericParameter(Type class1, int number)
  8. getGenericParameterClass(Class actualClass, int parameterIndex)
  9. getGenericParameterClass(Class clazz)