Package de.willuhn.jameica.hbci.rmi
Enum SepaLastType
- java.lang.Object
-
- java.lang.Enum<SepaLastType>
-
- de.willuhn.jameica.hbci.rmi.SepaLastType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SepaLastType>
public enum SepaLastType extends java.lang.Enum<SepaLastType>
Die verschiedenen Typen bei SEPA-Lastschriften.
-
-
Field Summary
Fields Modifier and Type Field Description static SepaLastType
DEFAULT
Der Default-Typ (CORE).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Liefert einen sprechenden Namen fuer den Typ.java.lang.String
getJobName()
Liefert den zugehoerigen HBCI-Job-Namen von HBCI4Java.java.lang.String
getMultiJobName()
Liefert den zugehoerigen HBCI-Job-Namen von HBCI4Java fuer den Sammel-Auftrag.java.lang.String
toString()
static SepaLastType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SepaLastType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CORE
public static final SepaLastType CORE
Basis-Lastschrift
-
COR1
public static final SepaLastType COR1
Basis-Lastschrift mit verkuerztem Vorlauf.
-
B2B
public static final SepaLastType B2B
B2B-Lastschrift
-
-
Field Detail
-
DEFAULT
public static SepaLastType DEFAULT
Der Default-Typ (CORE).
-
-
Method Detail
-
values
public static SepaLastType[] 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 (SepaLastType c : SepaLastType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SepaLastType 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
-
getJobName
public java.lang.String getJobName()
Liefert den zugehoerigen HBCI-Job-Namen von HBCI4Java.- Returns:
- der zugehoerige HBCI-Job-Name von HBCI4Java.
-
getMultiJobName
public java.lang.String getMultiJobName()
Liefert den zugehoerigen HBCI-Job-Namen von HBCI4Java fuer den Sammel-Auftrag.- Returns:
- der zugehoerige HBCI-Job-Name von HBCI4Java fuer den Sammel-Auftrag.
-
getDescription
public java.lang.String getDescription()
Liefert einen sprechenden Namen fuer den Typ.- Returns:
- sprechender Name fuer den Typ.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<SepaLastType>
- See Also:
Enum.toString()
-
-