All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jaxws.stub2html.util.MyClassUtils Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
package org.jaxws.stub2html.util;

import java.util.Collection;

/**
 * 
 * @author chenjianjx
 * 
 */
public class MyClassUtils {

	public static boolean isClassArrayOrCollection(Class clazz) {
		return clazz.isArray() || Collection.class.isAssignableFrom(clazz);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy