public static enum Image.ImageChannelType extends java.lang.Enum<Image.ImageChannelType>
ImageChannelType describes the size of the channel data type.| Enum Constant and Description | 
|---|
FLOAT  | 
HALF_FLOAT  | 
SIGNED_INT16  | 
SIGNED_INT32  | 
SIGNED_INT8  | 
SNORM_INT16  | 
SNORM_INT8  | 
UNORM_INT_101010  | 
UNORM_INT16  | 
UNORM_INT8  | 
UNORM_SHORT_555  | 
UNORM_SHORT_565  | 
UNSIGNED_INT16  | 
UNSIGNED_INT32  | 
UNSIGNED_INT8  | 
| Modifier and Type | Method and Description | 
|---|---|
static Image.ImageChannelType | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Image.ImageChannelType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Image.ImageChannelType SNORM_INT8
public static final Image.ImageChannelType SNORM_INT16
public static final Image.ImageChannelType UNORM_INT8
public static final Image.ImageChannelType UNORM_INT16
public static final Image.ImageChannelType UNORM_SHORT_565
public static final Image.ImageChannelType UNORM_SHORT_555
public static final Image.ImageChannelType UNORM_INT_101010
public static final Image.ImageChannelType SIGNED_INT8
public static final Image.ImageChannelType SIGNED_INT16
public static final Image.ImageChannelType SIGNED_INT32
public static final Image.ImageChannelType UNSIGNED_INT8
public static final Image.ImageChannelType UNSIGNED_INT16
public static final Image.ImageChannelType UNSIGNED_INT32
public static final Image.ImageChannelType HALF_FLOAT
public static final Image.ImageChannelType FLOAT
public static Image.ImageChannelType[] values()
for (Image.ImageChannelType c : Image.ImageChannelType.values()) System.out.println(c);
public static Image.ImageChannelType 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 null