public enum DriverKeyType extends Enum<DriverKeyType> implements HasName
| Enum Constant and Description |
|---|
CUSTOM
Custom driver ID Key.
|
CUSTOM_NFC
CustomNfc driver ID Key.
|
NFC
NFC driver ID Key.
|
TACHOGRAPH
Tachograph driver ID Key.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
USB
USB blue driver ID Key.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getName() |
static DriverKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DriverKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DriverKeyType UNKNOWN
public static final DriverKeyType USB
public static final DriverKeyType NFC
public static final DriverKeyType CUSTOM_NFC
public static final DriverKeyType TACHOGRAPH
public static final DriverKeyType CUSTOM
public static DriverKeyType[] values()
for (DriverKeyType c : DriverKeyType.values()) System.out.println(c);
public static DriverKeyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getCode()
Copyright © 2023. All rights reserved.