com.timgroup.karg.reflection.Accessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karg Show documentation
Show all versions of karg Show documentation
A library that helps you write Java functions using keyword arguments.
package com.timgroup.karg.reflection;
import com.timgroup.karg.reference.Lens;
public interface Accessor extends Lens, TypeBearer {
String propertyName();
boolean isMutable();
}