com.vtence.molecule.routing.AcceptClause Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molecule Show documentation
Show all versions of molecule Show documentation
A web micro-framework for Java
The newest version!
package com.vtence.molecule.routing;
import java.util.function.Predicate;
public interface AcceptClause extends ToClause {
ToClause accept(String mimeType);
ToClause accept(Predicate super String> mimeType);
}