Package org.kapott.hbci.manager
Enum FlickerCode.HHDVersion
- java.lang.Object
-
- java.lang.Enum<FlickerCode.HHDVersion>
-
- org.kapott.hbci.manager.FlickerCode.HHDVersion
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FlickerCode.HHDVersion>
- Enclosing class:
- FlickerCode
public static enum FlickerCode.HHDVersion extends java.lang.Enum<FlickerCode.HHDVersion>
Versionskennung.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<HHDVersion>
assigned
-
Constructor Summary
Constructors Modifier Constructor Description private
HHDVersion(HHDVersion... assigned)
ct.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description private static FlickerCode.HHDVersion
find(HHDVersion h)
Versucht die HHD-Version zu ermitteln.static FlickerCode.HHDVersion
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FlickerCode.HHDVersion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HHD14
public static final FlickerCode.HHDVersion HHD14
HHD-Version 1.4
-
HHD13
public static final FlickerCode.HHDVersion HHD13
HHD-Version 1.3
-
-
Field Detail
-
assigned
private java.util.List<HHDVersion> assigned
-
-
Constructor Detail
-
HHDVersion
private HHDVersion(HHDVersion... assigned)
ct.- Parameters:
assigned
- Liste der zugeordneten HHD-Versionen.
-
-
Method Detail
-
values
public static FlickerCode.HHDVersion[] 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 (FlickerCode.HHDVersion c : FlickerCode.HHDVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlickerCode.HHDVersion 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
-
find
private static FlickerCode.HHDVersion find(HHDVersion h)
Versucht die HHD-Version zu ermitteln.- Parameters:
h
- die HHD-Version.- Returns:
- das korrespondierende interne Enum.
-
-