Package de.willuhn.jameica.hbci.server
Enum BPDUtil.Query
- java.lang.Object
-
- java.lang.Enum<BPDUtil.Query>
-
- de.willuhn.jameica.hbci.server.BPDUtil.Query
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BPDUtil.Query>
- Enclosing class:
- BPDUtil
public static enum BPDUtil.Query extends java.lang.Enum<BPDUtil.Query>
Enum fuer vordefinierte Queries von BPD.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DauerEdit
Query fuer die Suche nach den BPD-Parametern fuer die Bearbeitung von Dauerauftraegen.Kontoauszug
Query fuer die Suche nach den BPD-Parametern fuer den Abruf der Kontoauszuege.KontoauszugPdf
Query fuer die Suche nach den BPD-Parametern fuer den Abruf der Kontoauszuege im PDF-Format.Umsatz
Query fuer die Suche nach den BPD-Parametern fuer den Abruf der Umsaetze.UmsatzCamt
Query fuer Abruf der Umsaetze im CAMT-Format.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BPDUtil.Query
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BPDUtil.Query[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DauerEdit
public static final BPDUtil.Query DauerEdit
Query fuer die Suche nach den BPD-Parametern fuer die Bearbeitung von Dauerauftraegen.
-
Kontoauszug
public static final BPDUtil.Query Kontoauszug
Query fuer die Suche nach den BPD-Parametern fuer den Abruf der Kontoauszuege.
-
KontoauszugPdf
public static final BPDUtil.Query KontoauszugPdf
Query fuer die Suche nach den BPD-Parametern fuer den Abruf der Kontoauszuege im PDF-Format.
-
Umsatz
public static final BPDUtil.Query Umsatz
Query fuer die Suche nach den BPD-Parametern fuer den Abruf der Umsaetze.
-
UmsatzCamt
public static final BPDUtil.Query UmsatzCamt
Query fuer Abruf der Umsaetze im CAMT-Format.
-
-
Method Detail
-
values
public static BPDUtil.Query[] 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 (BPDUtil.Query c : BPDUtil.Query.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BPDUtil.Query 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
-
-