Java Reflection Constructor Get getConstructors(Class clazz, int modifier)

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

Description

get Constructors

License

Apache License

Declaration

public static <T> List<Constructor<T>> getConstructors(Class<T> clazz, int modifier) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.lang.reflect.Constructor;

import java.util.ArrayList;
import java.util.List;

public class Main {
    public static <T> List<Constructor<T>> getConstructors(Class<T> clazz, int modifier) {
        Constructor<?>[] constructors = clazz.getDeclaredConstructors();
        List<Constructor<T>> ret = new ArrayList<Constructor<T>>(constructors.length);
        for (Constructor<?> constructor : constructors) {
            if ((modifier & constructor.getModifiers()) != 0) {
                @SuppressWarnings("unchecked")
                Constructor<T> c = (Constructor<T>) constructor;
                ret.add(c);/*  w w  w .j  a  v  a 2  s  . co  m*/
            }
        }
        return ret;
    }
}

Related

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