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