Enum Class Portal.LoginType

java.lang.Object
java.lang.Enum<Portal.LoginType>
com.esri.arcgisruntime.portal.Portal.LoginType
All Implemented Interfaces:
Serializable, Comparable<Portal.LoginType>, Constable
Enclosing class:
Portal

public static enum Portal.LoginType extends Enum<Portal.LoginType>
Signifies the login type for a portal.
Since:
100.0.0
  • Enum Constant Details

    • CLIENT_CERTIFICATE

      public static final Portal.LoginType CLIENT_CERTIFICATE
      Login uses a digital certificate to identify the user.
      Since:
      100.0.0
    • OAUTH

      public static final Portal.LoginType OAUTH
      Login uses an OAuth 2.0 based workflow.
      Since:
      100.0.0
    • USERNAME_PASSWORD

      public static final Portal.LoginType USERNAME_PASSWORD
      Login uses a username and password to identify the user.
      Since:
      100.0.0
    • UNKNOWN

      public static final Portal.LoginType UNKNOWN
      Login type is unknown.
      Since:
      100.0.0
  • Method Details

    • values

      public static Portal.LoginType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Portal.LoginType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null