public static enum SceneExporter.ImageType extends java.lang.Enum<SceneExporter.ImageType>
| Enum Constant | Description |
|---|---|
JPG |
Use this in the SceneExporter to set the export file type to JPG.
|
PNG |
Use this in the SceneExporter to set the export file type to PNG.
|
| Modifier and Type | Method | Description |
|---|---|---|
static SceneExporter.ImageType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SceneExporter.ImageType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SceneExporter.ImageType JPG
public static final SceneExporter.ImageType PNG
public static SceneExporter.ImageType[] values()
for (SceneExporter.ImageType c : SceneExporter.ImageType.values()) System.out.println(c);
public static SceneExporter.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 nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.