public static enum Source.ChannelMode extends Enum<Source.ChannelMode>
| Enum Constant and Description |
|---|
READ
A channel opened for reading data from an image already existing in the Store.
|
STREAM
A channel opened for streaming data from an image as it is created in the store.
|
WRITE
A channel for writing data to a newly created image.
|
| Modifier and Type | Method and Description |
|---|---|
static Source.ChannelMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Source.ChannelMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Source.ChannelMode READ
public static final Source.ChannelMode WRITE
public static final Source.ChannelMode STREAM
public static Source.ChannelMode[] values()
for (Source.ChannelMode c : Source.ChannelMode.values()) System.out.println(c);
public static Source.ChannelMode 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 © 2023 LSST. All rights reserved.