Enum HBCITraceMessage.Type
- java.lang.Object
-
- java.lang.Enum<HBCITraceMessage.Type>
-
- de.willuhn.jameica.hbci.synchronize.hbci.HBCITraceMessage.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HBCITraceMessage.Type>
- Enclosing class:
- HBCITraceMessage
public static enum HBCITraceMessage.Type extends java.lang.Enum<HBCITraceMessage.Type>
Der Typ der Message.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HBCITraceMessage.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HBCITraceMessage.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEND
public static final HBCITraceMessage.Type SEND
rohe HBCI-Message gesendet.
-
RECV
public static final HBCITraceMessage.Type RECV
rohe HBCI-Message empfangen.
-
INFO
public static final HBCITraceMessage.Type INFO
Freitext-Informationen zum Kontext.
-
ID
public static final HBCITraceMessage.Type ID
Identifier.
-
CLOSE
public static final HBCITraceMessage.Type CLOSE
Session fuer die ID geschlossen.
-
-
Method Detail
-
values
public static HBCITraceMessage.Type[] 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 (HBCITraceMessage.Type c : HBCITraceMessage.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HBCITraceMessage.Type 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
-
-