Clover icon

jalviewX

  1. Project Clover database Wed Oct 31 2018 15:13:58 GMT
  2. Package jalview.util.matcher

File MatcherI.java

 

Code metrics

0
0
0
1
18
8
0
-
-
0
-

Classes

Class Line # Actions
MatcherI 3 0 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package jalview.util.matcher;
2   
 
3    public interface MatcherI
4    {
5    /**
6    * Answers true if the given value is matched, else false
7    *
8    * @param s
9    * @return
10    */
11    boolean matches(String s);
12   
13    Condition getCondition();
14   
15    String getPattern();
16   
17    float getFloatValue();
18    }