Enum EUserAuthorizationType

    • Enum Constant Detail

      • USER

        public static final EUserAuthorizationType USER
        Deprecated.
        Users must login with a valid user account.
      • PASSWORD

        public static final EUserAuthorizationType PASSWORD
        Deprecated.
        Users must login with the password as setup in the form settings.
    • Method Detail

      • values

        public static EUserAuthorizationType[] values()
        Deprecated.
        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 (EUserAuthorizationType c : EUserAuthorizationType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EUserAuthorizationType valueOf​(String name)
        Deprecated.
        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