All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.babyfish.jimmer.DraftConsumer Maven / Gradle / Ivy

There is a newer version: 0.8.177
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy