public static enum ImageExporter.OutputFormat extends java.lang.Enum<ImageExporter.OutputFormat>
| Enum Constant and Description | 
|---|
OUTPUT_IMAGEJ
Output as an ImageJ stack, which will open in a new window; this
 "format" does not create any files on disk. 
 | 
OUTPUT_JPG
Output as a sequence of Joint Photographic Experts Group (JPEG) files. 
 | 
OUTPUT_PNG
Output as a sequence of Portable Network Graphics (PNG) files. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ImageExporter.OutputFormat | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ImageExporter.OutputFormat[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ImageExporter.OutputFormat OUTPUT_PNG
public static final ImageExporter.OutputFormat OUTPUT_JPG
public static final ImageExporter.OutputFormat OUTPUT_IMAGEJ
public static ImageExporter.OutputFormat[] values()
for (ImageExporter.OutputFormat c : ImageExporter.OutputFormat.values()) System.out.println(c);
public static ImageExporter.OutputFormat 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