de.factoryfx.javafx.data.widget.table.SearchTextMatchable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javafxDataEditing Show documentation
Show all versions of javafxDataEditing Show documentation
factoryfx dependency injection framework
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