public enum Bus extends Enum<Bus>
| Enum Constant and Description |
|---|
COMMAND
Bus for command messages.
|
LOG
Bus for log messages.
|
STATUS
Bus for status messages.
|
| Modifier and Type | Method and Description |
|---|---|
static Bus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bus LOG
public static final Bus STATUS
public static final Bus COMMAND
public static Bus[] values()
for (Bus c : Bus.values()) System.out.println(c);
public static Bus 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 © 2021 LSST. All rights reserved.