All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.imap.protocol.command.search.keys.OrSearchKey Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package com.hubspot.imap.protocol.command.search.keys;

import com.hubspot.imap.protocol.command.search.keys.SearchKeyType.StandardSearchKeyTypes;

/**
 * OR(RFC3501): Messages that match either search key.
 */
public class OrSearchKey extends BaseSearchKey {

  public OrSearchKey(SearchKeyType k1, SearchKeyType k2) {
    super(StandardSearchKeyTypes.OR, k1.keyString(), k2.keyString());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy