public static enum Channel.ChannelType extends java.lang.Enum<Channel.ChannelType>
| Modifier and Type | Method and Description |
|---|---|
static Channel.ChannelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Channel.ChannelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Channel.ChannelType MONO
public static final Channel.ChannelType RED
public static final Channel.ChannelType GREEN
public static final Channel.ChannelType BLUE
public static Channel.ChannelType[] values()
for (Channel.ChannelType c : Channel.ChannelType.values()) System.out.println(c);
public static Channel.ChannelType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2025 Open Microscopy Environment