org.fiolino.common.reflection.AttributeChooser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
General structure to easily create dynamic logic via MethodHandles and others.
package org.fiolino.common.reflection;
/**
* Created by Kuli on 6/17/2016.
*/
public interface AttributeChooser {
boolean accepts(String name, Class> type, AnnotationProvider annotationProvider);
AttributeChooser or(AttributeChooser alternative);
AttributeChooser and(AttributeChooser alternative);
AttributeChooser complement();
}