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

com.hubspot.imap.protocol.command.option.SelectOption Maven / Gradle / Ivy

The newest version!
package com.hubspot.imap.protocol.command.option;

public enum SelectOption {
  SPECIAL_USE("SPECIAL-USE");

  String name;

  SelectOption(String name) {
    this.name = name;
  }

  public String getName() {
    return name;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy