net.lenni0451.commons.strings.search.tokens.ISearchToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of main Show documentation
Show all versions of main Show documentation
A java library with many useful functions and classes
package net.lenni0451.commons.strings.search.tokens;
import org.jetbrains.annotations.ApiStatus;
@ApiStatus.Internal
public interface ISearchToken {
String getKeyword();
boolean required();
default int matches(final String token) {
return 0;
}
default int contains(final String string) {
return 0;
}
}