public static enum ImageGenerator.Format extends java.lang.Enum<ImageGenerator.Format>
| Enum Constant and Description |
|---|
VG_FP32
Float 32-bit format.
|
VG_S16
Signed 16-bit format.
|
VG_S32
Signed 32-bit format.
|
VG_S8
Signed 8-bit format.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getUnitSize()
Gets the unit size.
|
static ImageGenerator.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageGenerator.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageGenerator.Format VG_S8
public static final ImageGenerator.Format VG_S16
public static final ImageGenerator.Format VG_S32
public static final ImageGenerator.Format VG_FP32
public static ImageGenerator.Format[] values()
for (ImageGenerator.Format c : ImageGenerator.Format.values()) System.out.println(c);
public static ImageGenerator.Format 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 getUnitSize()