co.streamx.fluent.JPA.UnboundCharSequence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-jpa Show documentation
Show all versions of fluent-jpa Show documentation
Fluent query implementation for JPA repositories
The newest version!
package co.streamx.fluent.JPA;
public interface UnboundCharSequence extends CharSequence {
default boolean isEmpty() {
return length() == 0;
}
}