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

org.jpmml.xjc.CodeModelUtil Maven / Gradle / Ivy

There is a newer version: 1.6.5
Show newest version
/*
 * Copyright (c) 2013 KNIME.com AG, Zurich, Switzerland
 */
package org.jpmml.xjc;

import java.util.List;

import com.sun.codemodel.JClass;
import com.sun.codemodel.JType;

public class CodeModelUtil {

	private CodeModelUtil(){
	}

	static
	public JType getElementType(JType collectionType){
		JClass collectionClazz = (JClass)collectionType;

		List elementTypes = collectionClazz.getTypeParameters();
		if(elementTypes.size() != 1){
			throw new IllegalArgumentException();
		}

		return elementTypes.get(0);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy