public enum AiliaNetworkImageFormat extends java.lang.Enum<AiliaNetworkImageFormat>
Enum Constant and Description |
---|
BGR
BGR order
|
GRAY
Gray Scale (1ch)
|
GRAY_EQUALIZE
Equalized Gray Scale (1ch)
|
RGB
RGB order
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AiliaNetworkImageFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AiliaNetworkImageFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AiliaNetworkImageFormat BGR
public static final AiliaNetworkImageFormat RGB
public static final AiliaNetworkImageFormat GRAY
public static final AiliaNetworkImageFormat GRAY_EQUALIZE
public static AiliaNetworkImageFormat[] values()
for (AiliaNetworkImageFormat c : AiliaNetworkImageFormat.values()) System.out.println(c);
public static AiliaNetworkImageFormat 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 nullpublic int getValue()