public enum TransmissionMessage extends Enum<TransmissionMessage>
| Enum Constant and Description |
|---|
MSG_1 |
MSG_2 |
MSG_3 |
MSG_4 |
MSG_5 |
MSG_6 |
MSG_7 |
MSG_8 |
| Modifier and Type | Method and Description |
|---|---|
static TransmissionMessage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransmissionMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransmissionMessage MSG_1
public static final TransmissionMessage MSG_2
public static final TransmissionMessage MSG_3
public static final TransmissionMessage MSG_4
public static final TransmissionMessage MSG_5
public static final TransmissionMessage MSG_6
public static final TransmissionMessage MSG_7
public static final TransmissionMessage MSG_8
public static TransmissionMessage[] values()
for (TransmissionMessage c : TransmissionMessage.values()) System.out.println(c);
public static TransmissionMessage 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 © 2015–2016 Thomas Wenzlaff. All rights reserved.