Exemplo n.º 1
0
 public String toConditionString() {
   return "mime_header "
       + ZFilterRule.quotedString(getHeaderName())
       + " "
       + headerOp.name().toLowerCase()
       + " "
       + (caseSensitive ? "case_sensitive " : "")
       + ZFilterRule.quotedString(getHeaderValue());
 }
Exemplo n.º 2
0
 public String toConditionString() {
   return "header "
       + ZFilterRule.quotedString(getHeaderName())
       + (mExists ? " exists" : " not_exists");
 }
Exemplo n.º 3
0
 public String toConditionString() {
   return "date "
       + mDateOp.name().toLowerCase()
       + " "
       + ZFilterRule.quotedString(getDateString());
 }
Exemplo n.º 4
0
 public String toConditionString() {
   return "size " + mSizeOp.name().toLowerCase() + " " + ZFilterRule.quotedString(getSize());
 }
Exemplo n.º 5
0
 public String toConditionString() {
   return (bodyOp == BodyOp.CONTAINS ? "body contains " : "body not_contains ")
       + (caseSensitive ? "case_sensitive " : "")
       + ZFilterRule.quotedString(getText());
 }
Exemplo n.º 6
0
 public String toConditionString() {
   return (mAddressBookOp == AddressBookOp.IN ? "addressbook in " : "addressbook not_in ")
       + ZFilterRule.quotedString(getHeader());
 }