
public enum ImageHandlingState extends Enum<ImageHandlingState>
| Enum Constant and Description |
|---|
DISABLED
The corresponding reb is disabled and no data is written for it
|
IDLE
Waiting for data
|
READING
Reading data
|
STREAMING
Streaming data
|
| Modifier and Type | Method and Description |
|---|---|
static ImageHandlingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageHandlingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageHandlingState DISABLED
public static final ImageHandlingState IDLE
public static final ImageHandlingState READING
public static final ImageHandlingState STREAMING
public static ImageHandlingState[] values()
for (ImageHandlingState c : ImageHandlingState.values()) System.out.println(c);
public static ImageHandlingState 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 © 2020 LSST. All rights reserved.