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

com.hubspot.imap.protocol.command.search.keys.BaseSearchKey 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.atoms.BaseImapAtom;

public class BaseSearchKey extends BaseImapAtom implements SearchKey {

  private final SearchKeyType keyType;

  public BaseSearchKey(SearchKeyType type, String... args) {
    super(args);
    this.keyType = type;
  }

  public String keyString() {
    return imapString();
  }

  public String getPrefix() {
    return keyType.keyString();
  }

  public SearchKeyType getKeyType() {
    return keyType;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy