jodd.introspector.Getter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jodd-bean Show documentation
Show all versions of jodd-bean Show documentation
Jodd BeanUtil is fast and powerful bean manipulation library.
// 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();
}