public enum TachographCompanyCardStatus extends Enum<TachographCompanyCardStatus>
| Enum Constant and Description |
|---|
Available
Company card available.
|
Busy
Company card authenticating.
|
Offline
Company card disconnected.
|
| Modifier and Type | Method and Description |
|---|---|
static TachographCompanyCardStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TachographCompanyCardStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TachographCompanyCardStatus Offline
public static final TachographCompanyCardStatus Available
public static final TachographCompanyCardStatus Busy
public static TachographCompanyCardStatus[] values()
for (TachographCompanyCardStatus c : TachographCompanyCardStatus.values()) System.out.println(c);
public static TachographCompanyCardStatus 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 nullCopyright © 2024. All rights reserved.