Enum Class UserAccountType

java.lang.Object
java.lang.Enum<UserAccountType>
com.inet.usersandgroups.api.user.UserAccountType
All Implemented Interfaces:
Serializable, Comparable<UserAccountType>, Constable

public enum UserAccountType extends Enum<UserAccountType>
The account type determine some possible features of a user and/or login.
  • Enum Constant Details

  • Method Details

    • values

      public static UserAccountType[] 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 UserAccountType 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
    • getDisplayName

      public String getDisplayName()
      Returns the localized display name of the user account type.
      Returns:
      the localized display name of the user account type.
      Since:
      inetcore 4.0
    • getCreateLabel

      public String getCreateLabel()
      Returns localized label for adding a new user of this type.
      Returns:
      localized label for adding a new user of this type.
      Since:
      inetcore 4.0
    • getDescription

      public String getDescription()
      Returns localized description for the user account type.
      Returns:
      localized description for the user account type. Can be null
      Since:
      inetcore 4.0