Enum AuslandsUeberweisungControl.Typ
- java.lang.Object
-
- java.lang.Enum<AuslandsUeberweisungControl.Typ>
-
- de.willuhn.jameica.hbci.gui.controller.AuslandsUeberweisungControl.Typ
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AuslandsUeberweisungControl.Typ>
- Enclosing class:
- AuslandsUeberweisungControl
public static enum AuslandsUeberweisungControl.Typ extends java.lang.Enum<AuslandsUeberweisungControl.Typ>
Hilfsklasse fuer den Auftragstyp.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANT
EchtzeitueberweisungTERMIN
TerminueberweisungUEBERWEISUNG
UeberweisungUMBUCHUNG
Umbuchung
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
apply(AuslandsUeberweisung u)
Uebernimmt den Typ in den Auftrag.static AuslandsUeberweisungControl.Typ
determine(AuslandsUeberweisung u)
Ermittelt den Typ anhand des Auftrages.java.lang.String
getDescription()
Liefert den Beschreibungstext.static AuslandsUeberweisungControl.Typ
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AuslandsUeberweisungControl.Typ[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UEBERWEISUNG
public static final AuslandsUeberweisungControl.Typ UEBERWEISUNG
Ueberweisung
-
TERMIN
public static final AuslandsUeberweisungControl.Typ TERMIN
Terminueberweisung
-
UMBUCHUNG
public static final AuslandsUeberweisungControl.Typ UMBUCHUNG
Umbuchung
-
INSTANT
public static final AuslandsUeberweisungControl.Typ INSTANT
Echtzeitueberweisung
-
-
Method Detail
-
values
public static AuslandsUeberweisungControl.Typ[] 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 (AuslandsUeberweisungControl.Typ c : AuslandsUeberweisungControl.Typ.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuslandsUeberweisungControl.Typ 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
-
getDescription
public java.lang.String getDescription()
Liefert den Beschreibungstext.- Returns:
- description
-
determine
public static AuslandsUeberweisungControl.Typ determine(AuslandsUeberweisung u) throws java.rmi.RemoteException
Ermittelt den Typ anhand des Auftrages.- Parameters:
u
- der Auftrag.- Returns:
- der Typ.
- Throws:
java.rmi.RemoteException
-
apply
public void apply(AuslandsUeberweisung u) throws java.rmi.RemoteException
Uebernimmt den Typ in den Auftrag.- Parameters:
u
- der Auftrag.- Throws:
java.rmi.RemoteException
-
-