Package de.willuhn.jameica.hbci.rmi
Enum Class KontoType
- All Implemented Interfaces:
Serializable
,Comparable<KontoType>
,Constable
Definition der verschiedenen Konto-Arten.
Siehe FinTS_3.0_Formals_2011-06-14_final_version.pdf - Data Dictionary "Kontoart",
Seite 94.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBausparvertrag.Kredit-/Darlehenskonto.Festgeldkonto (Termineinlagen).Fonds-Depot bei einer Kapitalanlagegesellschaft.Kontokorrent-/Girokonto.Kreditkartenkonto.Sonstige (nicht zuordenbar).Sparkonto.Versicherungsvertrag.Wertpapierdepot. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic KontoType
Ermittelt die Kontoart fuer die ID.getName()
Liefert einen sprechenden Namen fuer die Kontoart.int
getValue()
Liefert den zu verwendenden Wert, wenn diese Kontoart manuell ausgewaehlt wurde.toString()
static KontoType
Returns the enum constant of this class with the specified name.static KontoType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GIRO
Kontokorrent-/Girokonto. -
SPAR
Sparkonto. -
FESTGELD
Festgeldkonto (Termineinlagen). -
WERTPAPIERDEPOT
Wertpapierdepot. -
DARLEHEN
Kredit-/Darlehenskonto. -
KREDITKARTE
Kreditkartenkonto. -
FONDSDEPOT
Fonds-Depot bei einer Kapitalanlagegesellschaft. -
BAUSPAR
Bausparvertrag. -
VERSICHERUNG
Versicherungsvertrag. -
SONSTIGE
Sonstige (nicht zuordenbar).
-
-
Field Details
-
DEFAULT
Die Default-Kontoart.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
Liefert einen sprechenden Namen fuer die Kontoart.- Returns:
- sprechender Name fuer die Kontoart.
-
getValue
public int getValue()Liefert den zu verwendenden Wert, wenn diese Kontoart manuell ausgewaehlt wurde.- Returns:
- der zu verwendende Wert, wenn diese Kontoart manuell ausgewaehlt wurde.
-
find
Ermittelt die Kontoart fuer die ID.- Parameters:
id
- die ID. Kann NULL sein.- Returns:
- die Kontoart oder NULL, wenn die ID nicht bekannt ist.
-
toString
-