Enum LoginUserType

    • Enum Constant Detail

      • CREATOR

        public static final LoginUserType CREATOR
        企业号创建者
      • INNERADMIN

        public static final LoginUserType INNERADMIN
        企业号内部系统管理员
      • OUTTERADMIN

        public static final LoginUserType OUTTERADMIN
        企业号外部系统管理员
      • LEVELADMIN

        public static final LoginUserType LEVELADMIN
        企业号分级管理员
      • MEMBER

        public static final LoginUserType MEMBER
        企业号成员
    • Method Detail

      • values

        public static LoginUserType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (LoginUserType c : LoginUserType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LoginUserType 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