Package de.frankmuenster.mahoe.web
Enum WebSiteExceptionTypes
- All Implemented Interfaces:
Serializable
,Comparable<WebSiteExceptionTypes>
,java.lang.constant.Constable
Die Fehlertypen der WebsieException
- Author:
- Frank Münster
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSome of the provided account information are wrong/missingThe download of a file from the web page failedEin Fehler ist beim endgültigen Absenden der Überweisung aufgetretenFehler während des Logins, anders als Benutzername/Passwort falsch.Der Login ist fehlgeschlagenDas Abmelden ist fehlgeschlagen.The web side implementation does not support this operationThe DOM data from a document link could not be parsedThe Selenium plugin is not installed, but needed for this bank connectionDer Dienst ist derzeit nicht verfügbar.Ein Fehler ist beim der Überprüfung der Überweisung aufgetretenWebseite ist nicht erreichbar -
Method Summary
Modifier and TypeMethodDescriptionstatic WebSiteExceptionTypes
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 Details
-
WEBSITE_NOT_REACHABLE
Webseite ist nicht erreichbar -
LOGIN_ERROR
Fehler während des Logins, anders als Benutzername/Passwort falsch. -
LOGIN_FAILED
Der Login ist fehlgeschlagen -
HTTP_STATUS_CODE
-
ACCOUNT_NOT_FOUND
-
READ_ACCOUNT_DETAILS_FAILED
-
PAGE_NOT_FOUND
-
SERVICE_UNAVAILABLE
Der Dienst ist derzeit nicht verfügbar. -
LOGOFF_FAILED
Das Abmelden ist fehlgeschlagen. -
TRANSFER_FAILED
Ein Fehler ist beim der Überprüfung der Überweisung aufgetreten -
FINAL_TRANSFER_FAILED
Ein Fehler ist beim endgültigen Absenden der Überweisung aufgetreten -
OPERATION_NOT_SUPPORTED
The web side implementation does not support this operation -
ACCOUNT_INFO_WRONG
Some of the provided account information are wrong/missing -
SELENIUM_NOT_INSTALLED
The Selenium plugin is not installed, but needed for this bank connection -
FILE_DOWNLOAD_FAILED
The download of a file from the web page failed -
PARSE_LINK_ERROR
The DOM data from a document link could not be parsed
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-