public enum SignalLevel extends Enum<SignalLevel>
| Enum Constant and Description |
|---|
HALT
halts the hardware.
|
INTERRUPT1
weak interruption.
|
INTERRUPT2
stronger interruption.
|
RE_START
normally sent to a hardware that has been stopped.
|
STOP
request to stop the hardware, not urgent but may be linked to a delay
|
| Modifier and Type | Method and Description |
|---|---|
static SignalLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignalLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignalLevel RE_START
public static final SignalLevel STOP
public static final SignalLevel INTERRUPT1
public static final SignalLevel INTERRUPT2
public static final SignalLevel HALT
public static SignalLevel[] values()
for (SignalLevel c : SignalLevel.values()) System.out.println(c);
public static SignalLevel 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 LSST. All rights reserved.