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

com.hubspot.imap.protocol.command.search.keys.BeforeSearchKey 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;
import com.hubspot.imap.utils.formats.ImapDateFormat;
import java.time.ZonedDateTime;

/**
 * BEFORE (RFC3501): Messages whose internal date (disregarding time and timezone) is earlier than the specified date.
 */
public class BeforeSearchKey extends BaseSearchKey {

  public BeforeSearchKey(ZonedDateTime d) {
    super(StandardSearchKeyTypes.BEFORE, ImapDateFormat.toImapDateOnlyString(d));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy