public static enum SceneExporter.ZoomType extends Enum<SceneExporter.ZoomType>
Enum Constant and Description |
---|
ACTUAL_SIZE
Used to export an image of the scene according to its boundary dimensions.
|
CURRENT_ZOOM_LEVEL
Used when the objects in the scene are to be exported into an
image scaled the same as the scene.
|
CUSTOM_SIZE
Used to set the horizontal and vertical sizes directly.
|
FIT_IN_WINDOW
Used when the objects in the scene are to be exported into an
image with the identical dimensions of the scene's visual window.
|
Modifier and Type | Method and Description |
---|---|
static SceneExporter.ZoomType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SceneExporter.ZoomType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SceneExporter.ZoomType CUSTOM_SIZE
public static final SceneExporter.ZoomType FIT_IN_WINDOW
public static final SceneExporter.ZoomType CURRENT_ZOOM_LEVEL
public static final SceneExporter.ZoomType ACTUAL_SIZE
public static SceneExporter.ZoomType[] values()
public static SceneExporter.ZoomType 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 null