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

org.codehaus.groovy.reflection.GroovyClassValue Maven / Gradle / Ivy

There is a newer version: 3.0.23
Show newest version
package org.codehaus.groovy.reflection;

/** Abstraction for Java version dependent ClassValue implementations.
 * @see java.lang.ClassValue
 *
 * @param 
 */
public interface GroovyClassValue {
	
	public static interface ComputeValue{
		T computeValue(Class type);
	}
	
	T get(Class type);
	
	void remove(Class type);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy