public static enum Image.ImageType extends java.lang.Enum<Image.ImageType>
| Enum Constant and Description | 
|---|
IMAGE_1D  | 
IMAGE_1D_ARRAY  | 
IMAGE_1D_BUFFER  | 
IMAGE_2D  | 
IMAGE_2D_ARRAY  | 
IMAGE_3D  | 
| Modifier and Type | Method and Description | 
|---|---|
static Image.ImageType | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Image.ImageType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Image.ImageType IMAGE_1D
public static final Image.ImageType IMAGE_1D_BUFFER
public static final Image.ImageType IMAGE_2D
public static final Image.ImageType IMAGE_3D
public static final Image.ImageType IMAGE_1D_ARRAY
public static final Image.ImageType IMAGE_2D_ARRAY
public static Image.ImageType[] values()
for (Image.ImageType c : Image.ImageType.values()) System.out.println(c);
public static Image.ImageType 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