Package io.github.jonestimd.swing.table
Interface Highlighter
-
- All Known Implementing Classes:
HtmlHighlighter
public interface Highlighter
An interface for highlighting portions of a string.
-
-
Field Summary
Fields Modifier and Type Field Description static Highlighter
NOOP_HIGHLIGHTER
A highlighter that does nothing.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
highlight(java.lang.String value, java.util.Collection<java.lang.String> highlights)
Apply highlighting to a string.
-
-
-
Field Detail
-
NOOP_HIGHLIGHTER
static final Highlighter NOOP_HIGHLIGHTER
A highlighter that does nothing.
-
-