public enum GltfEmbeddedImageFormat extends java.lang.Enum<GltfEmbeddedImageFormat>
| Enum Constant and Description |
|---|
JPEG
All non-supported images formats will be converted to jpeg if possible.
|
NO_CHANGE
Do not convert the image and keep it as it is.
|
PNG
All non-supported images formats will be converted to png if possible.
|
| Modifier and Type | Method and Description |
|---|---|
static GltfEmbeddedImageFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GltfEmbeddedImageFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GltfEmbeddedImageFormat NO_CHANGE
public static final GltfEmbeddedImageFormat JPEG
public static final GltfEmbeddedImageFormat PNG
public static GltfEmbeddedImageFormat[] values()
for (GltfEmbeddedImageFormat c : GltfEmbeddedImageFormat.values()) System.out.println(c);
public static GltfEmbeddedImageFormat 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