
org.babyfish.jimmer.DraftConsumer Maven / Gradle / Ivy
package org.babyfish.jimmer;
/**
*
* Lambda expressions for modifying mutable draft.
*
*
*
* Similar to {@code java.util.function.Consumer}, but allows exceptions to be thrown.
*
* @param The draft interface generated by Annotation Processor.
*/
@FunctionalInterface
public interface DraftConsumer {
void accept(D draft) throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy