1. Project Clover database Wed Nov 12 2025 05:07:35 UTC
  2. Package guru.mikelue.foxglove.functional

File ColumnMatcher.java

 

Code metrics

0
0
0
1
11
5
0
-
-
0
-

Classes

Class Line # Actions
ColumnMatcher 11 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package guru.mikelue.foxglove.functional;
2   
3    import java.util.function.Predicate;
4   
5    import guru.mikelue.foxglove.ColumnMeta;
6   
7    /**
8    * Defines the matcher for column metadata.
9    */
10    @FunctionalInterface
 
11    public interface ColumnMatcher extends Predicate<ColumnMeta> {}