
io.axway.iron.functional.Accessor Maven / Gradle / Ivy
package io.axway.iron.functional;
/**
* This interface should be only used through method reference. It's used as a workaround to support Java method literal.
*
* @param the entity on which the method reference should be based
* @param the method reference return type
*/
@FunctionalInterface
public interface Accessor {
V get(E object);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy