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

com.hubspot.imap.protocol.capabilities.AuthMechanism Maven / Gradle / Ivy

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

import com.google.common.collect.Maps;
import java.util.Arrays;
import java.util.Map;

public enum AuthMechanism {
  LOGIN,
  PLAIN,
  XOAUTH2,
  NTLM,
  GSSAPI,
  UNKNOWN;

  private static final Map INDEX = Maps.uniqueIndex(
    Arrays.asList(AuthMechanism.values()),
    authMechanism -> authMechanism.name().toLowerCase()
  );

  public static AuthMechanism fromString(String name) {
    return INDEX.getOrDefault(name.toLowerCase(), AuthMechanism.UNKNOWN);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy