Enum WebSiteExceptionTypes

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<WebSiteExceptionTypes>

    public enum WebSiteExceptionTypes
    extends java.lang.Enum<WebSiteExceptionTypes>
    Die Fehlertypen der WebsieException
    Author:
    Frank Münster
    • Enum Constant Detail

      • WEBSITE_NOT_REACHABLE

        public static final WebSiteExceptionTypes WEBSITE_NOT_REACHABLE
        Webseite ist nicht erreichbar
      • LOGIN_ERROR

        public static final WebSiteExceptionTypes LOGIN_ERROR
        Fehler während des Logins, anders als Benutzername/Passwort falsch.
      • SERVICE_UNAVAILABLE

        public static final WebSiteExceptionTypes SERVICE_UNAVAILABLE
        Der Dienst ist derzeit nicht verfügbar.
      • LOGOFF_FAILED

        public static final WebSiteExceptionTypes LOGOFF_FAILED
        Das Abmelden ist fehlgeschlagen.
      • TRANSFER_FAILED

        public static final WebSiteExceptionTypes TRANSFER_FAILED
        Ein Fehler ist beim der Überprüfung der Überweisung aufgetreten
      • FINAL_TRANSFER_FAILED

        public static final WebSiteExceptionTypes FINAL_TRANSFER_FAILED
        Ein Fehler ist beim endgültigen Absenden der Überweisung aufgetreten
      • OPERATION_NOT_SUPPORTED

        public static final WebSiteExceptionTypes OPERATION_NOT_SUPPORTED
        The web side implementation does not support this operation
      • ACCOUNT_INFO_WRONG

        public static final WebSiteExceptionTypes ACCOUNT_INFO_WRONG
        Some of the provided account information are wrong/missing
      • SELENIUM_NOT_INSTALLED

        public static final WebSiteExceptionTypes SELENIUM_NOT_INSTALLED
        The Selenium plugin is not installed, but needed for this bank connection
      • FILE_DOWNLOAD_FAILED

        public static final WebSiteExceptionTypes FILE_DOWNLOAD_FAILED
        The download of a file from teh web page failed
    • Method Detail

      • values

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

        public static WebSiteExceptionTypes valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null