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

net.lenni0451.commons.strings.search.tokens.ISearchToken Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy