public enum TransmissionDelay extends Enum<TransmissionDelay>
Enum Constant and Description |
---|
Delay_0
No delay
|
Delay_1sec
Delay one second between the transmission of each data record
|
Delay_250ms
Delay 250 milliseconds between the transmission of each data record
|
Delay_2sec
Delay two second between the transmission of each data record
|
Delay_3sec
Delay three second between the transmission of each data record
|
Delay_500ms
Delay 500 milliseconds between the transmission of each data record
|
Delay_5sec
Delay five second between the transmission of each data record
|
Delay_8sec
Delay eight second between the transmission of each data record
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static TransmissionDelay |
valueOf(int value) |
static TransmissionDelay |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransmissionDelay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransmissionDelay Delay_0
public static final TransmissionDelay Delay_250ms
public static final TransmissionDelay Delay_500ms
public static final TransmissionDelay Delay_1sec
public static final TransmissionDelay Delay_2sec
public static final TransmissionDelay Delay_3sec
public static final TransmissionDelay Delay_5sec
public static final TransmissionDelay Delay_8sec
public static TransmissionDelay[] values()
for (TransmissionDelay c : TransmissionDelay.values()) System.out.println(c);
public static TransmissionDelay 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 getValue()
public static TransmissionDelay valueOf(int value)