JAL-2808 added conditions Present, NotPresent as options
[jalview.git] / src / jalview / util / matcher / Condition.java
index 455f805..4d14063 100644 (file)
@@ -12,6 +12,7 @@ import java.util.Map;
 public enum Condition
 {
   Contains(false), NotContains(false), Matches(false), NotMatches(false),
+  Present(false), NotPresent(false),
   EQ(true), NE(true), LT(true), LE(true), GT(true), GE(true);
 
   private static Map<Condition, String> displayNames = new HashMap<>();