/*
 * Copyright (c) 2011-2017 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package io.vertx.core.cli.impl;

import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.lang.reflect.ParameterizedType;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

Some utilities methods to ease reflection calls.
Author:Clement Escoffier
/** * Some utilities methods to ease reflection calls. * * @author Clement Escoffier <clement@apache.org> */
public class ReflectionUtils { public static <T> T newInstance(Class<T> clazz) { try { return clazz.getDeclaredConstructor().newInstance(); } catch (Exception e) { throw new IllegalArgumentException("Cannot instantiate " + clazz.getName(), e); } } public static boolean isSetter(Method method) { return method.getName().startsWith("set") && method.getParameterTypes().length == 1; } public static List<Method> getSetterMethods(Class<?> clazz) { return Arrays.stream(clazz.getMethods()).filter(ReflectionUtils::isSetter).collect(Collectors.toList()); } public static boolean isMultiple(Method setter) { final Class<?> type = setter.getParameterTypes()[0]; return type.isArray() || List.class.isAssignableFrom(type) || Set.class.isAssignableFrom(type) || Collection.class.isAssignableFrom(type); } public static Class getComponentType(Parameter parameter) { Class<?> type = parameter.getType(); if (type.isArray()) { return type.getComponentType(); } if (parameter.getParameterizedType() != null) { return (Class) ((ParameterizedType) parameter.getParameterizedType()).getActualTypeArguments()[0]; } if (parameter.getType().getGenericSuperclass() instanceof ParameterizedType) { return (Class) ((ParameterizedType) parameter.getType().getGenericSuperclass()).getActualTypeArguments()[0]; } return null; } }