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

jodd.introspector.Getter Maven / Gradle / Ivy

There is a newer version: 5.1.6
Show newest version
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.introspector;

import java.lang.reflect.InvocationTargetException;

/**
 * Unified getter property interface for both methods and fields.
 */
public interface Getter {

	Object invokeGetter(Object target) throws InvocationTargetException, IllegalAccessException;

	Class getGetterRawType();

	Class getGetterRawComponentType();

	Class getGetterRawKeyComponentType();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy