Enum UserDomainType

java.lang.Object
java.lang.Enum<UserDomainType>
com.microsoft.store.partnercenter.models.users.UserDomainType
All Implemented Interfaces:
Serializable, Comparable<UserDomainType>, java.lang.constant.Constable

public enum UserDomainType
extends Enum<UserDomainType>
Types of user domains supported.
  • Enum Constant Details

    • NONE

      public static final UserDomainType NONE
      Default - None.
    • MANAGED

      public static final UserDomainType MANAGED
      Password sync directories support mixed mode i.e. users that are cloud only or directory synced from an on premises directory.
    • FEDERATED

      public static final UserDomainType FEDERATED
      Federated domains don’t support mixed mode. Users created have to be linked to an on premises directory account with their immutable ids.
  • Method Details

    • values

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

      public static UserDomainType valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Converts the object to a string.
      Overrides:
      toString in class Enum<UserDomainType>
      Returns:
      A string that represents this object.