Java Reflection Generic Type from Class getGenericClass(final Class parametrizedClass, int pos)

Here you can find the source of getGenericClass(final Class parametrizedClass, int pos)

Description

get Generic Class

License

Apache License

Declaration

public static <T> Class<T> getGenericClass(final Class<?> parametrizedClass, int pos) 

Method Source Code

//package com.java2s;
/*//from w  w  w.  ja  v a  2s . c o  m
 * Copyright 2015 Red Hat Inc. and/or its affiliates and other contributors.
 *
 * 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;

public class Main {
    public static <T> Class<T> getGenericClass(final Class<?> parametrizedClass, int pos) {
        return (Class<T>) ((ParameterizedType) parametrizedClass.getGenericSuperclass())
                .getActualTypeArguments()[pos];
    }
}

Related

  1. getGenericClass(Class clazz)
  2. getGenericClass(Class clazz, int index)
  3. getGenericClass(Class cls)
  4. getGenericClass(final Class class1)
  5. getGenericClass(final Class parametrizedClass, int pos)
  6. getGenericClass(final Method method)
  7. getGenericClass(Object o)
  8. getGenericClass(Object object, int index)
  9. getGenericClass(Object source, ParameterizedType type)