java.io.Serializable
, java.lang.Comparable<WebSiteExceptionTypes>
public enum WebSiteExceptionTypes extends java.lang.Enum<WebSiteExceptionTypes>
Enum Constant | Description |
---|---|
ACCOUNT_INFO_WRONG |
Some of the provided account information are wrong/missing
|
ACCOUNT_NOT_FOUND |
|
FILE_DOWNLOAD_FAILED |
The download of a file from teh web page failed
|
FINAL_TRANSFER_FAILED |
Ein Fehler ist beim endgültigen Absenden der Überweisung aufgetreten
|
HTTP_STATUS_CODE |
|
LOGIN_ERROR |
Fehler während des Logins, anders als Benutzername/Passwort falsch.
|
LOGIN_FAILED |
Der Login ist fehlgeschlagen
|
LOGOFF_FAILED |
Das Abmelden ist fehlgeschlagen.
|
OPERATION_NOT_SUPPORTED |
The web side implementation does not support this operation
|
PAGE_NOT_FOUND |
|
READ_ACCOUNT_DETAILS_FAILED |
|
SELENIUM_NOT_INSTALLED |
The Selenium plugin is not installed, but needed for this bank connection
|
SERVICE_UNAVAILABLE |
Der Dienst ist derzeit nicht verfügbar.
|
TRANSFER_FAILED |
Ein Fehler ist beim der Überprüfung der Überweisung aufgetreten
|
WEBSITE_NOT_REACHABLE |
Webseite ist nicht erreichbar
|
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.
|
public static final WebSiteExceptionTypes WEBSITE_NOT_REACHABLE
public static final WebSiteExceptionTypes LOGIN_ERROR
public static final WebSiteExceptionTypes LOGIN_FAILED
public static final WebSiteExceptionTypes HTTP_STATUS_CODE
public static final WebSiteExceptionTypes ACCOUNT_NOT_FOUND
public static final WebSiteExceptionTypes READ_ACCOUNT_DETAILS_FAILED
public static final WebSiteExceptionTypes PAGE_NOT_FOUND
public static final WebSiteExceptionTypes SERVICE_UNAVAILABLE
public static final WebSiteExceptionTypes LOGOFF_FAILED
public static final WebSiteExceptionTypes TRANSFER_FAILED
public static final WebSiteExceptionTypes FINAL_TRANSFER_FAILED
public static final WebSiteExceptionTypes OPERATION_NOT_SUPPORTED
public static final WebSiteExceptionTypes ACCOUNT_INFO_WRONG
public static final WebSiteExceptionTypes SELENIUM_NOT_INSTALLED
public static final WebSiteExceptionTypes FILE_DOWNLOAD_FAILED
public static WebSiteExceptionTypes[] values()
for (WebSiteExceptionTypes c : WebSiteExceptionTypes.values()) System.out.println(c);
public static WebSiteExceptionTypes valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null