Package de.willuhn.jameica.hbci.server
Enum VerwendungszweckUtil.Tag
- java.lang.Object
-
- java.lang.Enum<VerwendungszweckUtil.Tag>
-
- de.willuhn.jameica.hbci.server.VerwendungszweckUtil.Tag
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VerwendungszweckUtil.Tag>
- Enclosing class:
- VerwendungszweckUtil
public static enum VerwendungszweckUtil.Tag extends java.lang.Enum<VerwendungszweckUtil.Tag>
Liste der bekannten Tags.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VerwendungszweckUtil.Tag
byName(java.lang.String s)
Sucht das Tag mit dem angegebenen Namen.static VerwendungszweckUtil.Tag
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VerwendungszweckUtil.Tag[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EREF
public static final VerwendungszweckUtil.Tag EREF
Ende-zu-Ende Referenz.
-
KREF
public static final VerwendungszweckUtil.Tag KREF
Kundenreferenz.
-
MREF
public static final VerwendungszweckUtil.Tag MREF
Mandatsreferenz.
-
CRED
public static final VerwendungszweckUtil.Tag CRED
Creditor-ID.
-
DBET
public static final VerwendungszweckUtil.Tag DBET
Debitor-ID.
-
SVWZ
public static final VerwendungszweckUtil.Tag SVWZ
Verwendungszweck.
-
ABWA
public static final VerwendungszweckUtil.Tag ABWA
Abweichender Auftraggeber.
-
IBAN
public static final VerwendungszweckUtil.Tag IBAN
IBAN des Gegenkontos.
-
BIC
public static final VerwendungszweckUtil.Tag BIC
BIC des Gegenkontos.
-
-
Method Detail
-
values
public static VerwendungszweckUtil.Tag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VerwendungszweckUtil.Tag c : VerwendungszweckUtil.Tag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerwendungszweckUtil.Tag valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
byName
public static VerwendungszweckUtil.Tag byName(java.lang.String s)
Sucht das Tag mit dem angegebenen Namen.- Parameters:
s
- der Name des Tag.- Returns:
- das Tag oder NULL, wenn es nicht gefunden wurde.
-
-