package fr.umlv.reflect;

@FunctionalInterface
public interface Getter<T> {
  Object get(T object);
}