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

de.factoryfx.javafx.data.widget.table.SearchTextMatchable Maven / Gradle / Ivy

The newest version!
package de.factoryfx.javafx.data.widget.table;

import java.util.Optional;

public interface SearchTextMatchable {

    default boolean matchSearchText(String newValue) {
        return Optional.ofNullable(toString()).map(s->s.contains(newValue)).orElse(false);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy