java.io.Serializable
, java.lang.Comparable<PurposeCode>
public enum PurposeCode extends java.lang.Enum<PurposeCode>
Enum Constant | Description |
---|---|
BONU |
Bonuszahlungen.
|
CASH |
Cash Management Transfer
|
CBFF |
Vermögenswirksame Leistungen
|
CHAR |
Spendenzahlungen.
|
DEPT |
Einzahlung
|
GOWT |
Zahlung an öffentl.
|
NOWS |
Nicht anders vorgeschrieben
|
OTHR |
Andere
|
PAYR |
Lohn
|
REFU |
Gutschrift/Rücküberweisung
|
RENT |
Miete
|
RINP |
Wiederkehrende Zahlungen / Dauerauftrag
|
SALA |
Gehaltszahlungen
|
SSBE |
Sozialleistung
|
Modifier and Type | Method | Description |
---|---|---|
static java.util.List<java.lang.String> |
codes() |
Liefert die Liste der bekannten Codes.
|
static PurposeCode |
find(java.lang.String code) |
Ermittelt den Purpose-Code.
|
java.lang.String |
getCode() |
Liefert den Code.
|
java.lang.String |
getName() |
Liefert einen sprechenden Namen fuer den Purpose-Code.
|
java.lang.String |
toString() |
|
static PurposeCode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PurposeCode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PurposeCode RENT
public static final PurposeCode DEPT
public static final PurposeCode REFU
public static final PurposeCode SALA
public static final PurposeCode PAYR
public static final PurposeCode SSBE
public static final PurposeCode GOWT
public static final PurposeCode CBFF
public static final PurposeCode BONU
public static final PurposeCode CHAR
public static final PurposeCode RINP
public static final PurposeCode CASH
public static final PurposeCode NOWS
public static final PurposeCode OTHR
public static PurposeCode[] values()
for (PurposeCode c : PurposeCode.values()) System.out.println(c);
public static PurposeCode 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 getCode()
public java.lang.String getName()
public static PurposeCode find(java.lang.String code)
code
- der Code. Kann NULL sein.public java.lang.String toString()
toString
in class java.lang.Enum<PurposeCode>
Enum.toString()
public static java.util.List<java.lang.String> codes()