Java Reflection Constructor Get getConstructors(Class clazz)

Here you can find the source of getConstructors(Class clazz)

Description

get Constructors

License

Open Source License

Declaration

public static <T> Set<Constructor<T>> getConstructors(Class<T> clazz) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.lang.reflect.Constructor;
import java.util.LinkedHashSet;
import java.util.Set;

public class Main {
    public static <T> Set<Constructor<T>> getConstructors(Class<T> clazz) {
        return createConstructorList(clazz.getConstructors());
    }//from   www  .  ja v  a2s .c  om

    @SuppressWarnings("unchecked")
    private static <T> Set<Constructor<T>> createConstructorList(Constructor<?>... constructors) {
        Set<Constructor<T>> ctors = new LinkedHashSet<>(constructors.length);

        for (Constructor<?> ctor : constructors) {
            ctors.add((Constructor<T>) ctor);
        }

        return ctors;
    }
}

Related

  1. getConstructorOrFail(Class clazz, Class... argTypes)
  2. getConstructors(Class cl)
  3. getConstructors(Class infoClass)
  4. getConstructors(Class clazz)
  5. getConstructors(Class clazz, int args)
  6. getConstructors(Class clazz, int modifier)
  7. getConstructors(final Class cl, final int params)
  8. getConstructorSignature(final Constructor constructor)
  9. getConstructorSignatureWithLongTypeNames(Constructor init)