Enum Constant | Description |
---|---|
BAUSPAR |
Bausparvertrag.
|
DARLEHEN |
Kredit-/Darlehenskonto.
|
FESTGELD |
Festgeldkonto (Termineinlagen).
|
FONDSDEPOT |
Fonds-Depot bei einer Kapitalanlagegesellschaft.
|
GIRO |
Kontokorrent-/Girokonto.
|
KREDITKARTE |
Kreditkartenkonto.
|
SONSTIGE |
Sonstige (nicht zuordenbar).
|
SPAR |
Sparkonto.
|
VERSICHERUNG |
Versicherungsvertrag.
|
WERTPAPIERDEPOT |
Wertpapierdepot.
|
Modifier and Type | Field | Description |
---|---|---|
static KontoType |
DEFAULT |
Die Default-Kontoart.
|
Modifier and Type | Method | Description |
---|---|---|
static KontoType |
find(java.lang.Integer id) |
Ermittelt die Kontoart fuer die ID.
|
java.lang.String |
getName() |
Liefert einen sprechenden Namen fuer die Kontoart.
|
int |
getValue() |
Liefert den zu verwendenden Wert, wenn diese Kontoart manuell ausgewaehlt wurde.
|
java.lang.String |
toString() |
|
static KontoType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static KontoType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KontoType GIRO
public static final KontoType SPAR
public static final KontoType FESTGELD
public static final KontoType WERTPAPIERDEPOT
public static final KontoType DARLEHEN
public static final KontoType KREDITKARTE
public static final KontoType FONDSDEPOT
public static final KontoType BAUSPAR
public static final KontoType VERSICHERUNG
public static final KontoType SONSTIGE
public static final KontoType DEFAULT
public static KontoType[] values()
for (KontoType c : KontoType.values()) System.out.println(c);
public static KontoType 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 nullpublic java.lang.String getName()
public int getValue()
public static KontoType find(java.lang.Integer id)
id
- die ID. Kann NULL sein.public java.lang.String toString()
toString
in class java.lang.Enum<KontoType>
Enum.toString()