public enum ImageFormat extends java.lang.Enum<ImageFormat>
Modifier and Type | Method and Description |
---|---|
static ImageFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageFormat ImageFormatUndefined
public static final ImageFormat ImageFormatJPEG
public static final ImageFormat ImageFormatTIFF
public static final ImageFormat ImageFormatPNG
public static final ImageFormat ImageFormatBMP
public static final ImageFormat ImageFormatEXR
public static final ImageFormat ImageFormatPNM
public static final ImageFormat ImageFormatSGI
public static final ImageFormat ImageFormatCR2
public static final ImageFormat ImageFormatBZ2
public static final ImageFormat ImageFormatSEQ
public static final ImageFormat ImageFormatBIL
public static final ImageFormat ImageFormatASCII
public static final ImageFormat ImageFormatXYZ
public static final ImageFormat ImageFormatARA
public static final ImageFormat ImageFormatTGA
public static final ImageFormat ImageFormatDDS
public static final ImageFormat ImageFormatJP2
public static final ImageFormat ImageFormatWebP
public static final ImageFormat ImageFormatJXL
public static final ImageFormat ImageFormatKTX
public static ImageFormat[] values()
for (ImageFormat c : ImageFormat.values()) System.out.println(c);
public static ImageFormat 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