Package de.frankmuenster.mahoe.web
Enum WebSiteExceptionTypes
- java.lang.Object
-
- java.lang.Enum<WebSiteExceptionTypes>
-
- de.frankmuenster.mahoe.web.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 Summary
Enum Constants Enum Constant Description ACCOUNT_INFO_WRONG
Some of the provided account information are wrong/missingACCOUNT_NOT_FOUND
FILE_DOWNLOAD_FAILED
The download of a file from teh web page failedFINAL_TRANSFER_FAILED
Ein Fehler ist beim endgültigen Absenden der Überweisung aufgetretenHTTP_STATUS_CODE
LOGIN_ERROR
Fehler während des Logins, anders als Benutzername/Passwort falsch.LOGIN_FAILED
Der Login ist fehlgeschlagenLOGOFF_FAILED
Das Abmelden ist fehlgeschlagen.OPERATION_NOT_SUPPORTED
The web side implementation does not support this operationPAGE_NOT_FOUND
READ_ACCOUNT_DETAILS_FAILED
SELENIUM_NOT_INSTALLED
The Selenium plugin is not installed, but needed for this bank connectionSERVICE_UNAVAILABLE
Der Dienst ist derzeit nicht verfügbar.TRANSFER_FAILED
Ein Fehler ist beim der Überprüfung der Überweisung aufgetretenWEBSITE_NOT_REACHABLE
Webseite ist nicht erreichbar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebSiteExceptionTypes
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WebSiteExceptionTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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.
-
LOGIN_FAILED
public static final WebSiteExceptionTypes LOGIN_FAILED
Der Login ist fehlgeschlagen
-
HTTP_STATUS_CODE
public static final WebSiteExceptionTypes HTTP_STATUS_CODE
-
ACCOUNT_NOT_FOUND
public static final WebSiteExceptionTypes ACCOUNT_NOT_FOUND
-
READ_ACCOUNT_DETAILS_FAILED
public static final WebSiteExceptionTypes READ_ACCOUNT_DETAILS_FAILED
-
PAGE_NOT_FOUND
public static final WebSiteExceptionTypes PAGE_NOT_FOUND
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-