Serializable
, Comparable<SceneExporter.ImageType>
public static enum SceneExporter.ImageType extends 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(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.