public enum TachographFileFormat extends Enum<TachographFileFormat>
| Enum Constant and Description |
|---|
Ddd
Standard file format DDD.
|
Tgd
Spanish file format TGD.
|
V1b
French file format V1B.
|
| Modifier and Type | Method and Description |
|---|---|
static TachographFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TachographFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TachographFileFormat Tgd
public static final TachographFileFormat Ddd
public static final TachographFileFormat V1b
public static TachographFileFormat[] values()
for (TachographFileFormat c : TachographFileFormat.values()) System.out.println(c);
public static TachographFileFormat 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.