public static enum ImageExporter.OutputFormat extends java.lang.Enum<ImageExporter.OutputFormat>
| Enum Constant and Description | 
|---|
| OUTPUT_AVIOutput as an AVI with JPEG compression. | 
| OUTPUT_CLIPBOARDOutput to the System Clipboard, will only work for a single image. | 
| OUTPUT_GIFOutput as a GIF. | 
| OUTPUT_IMAGEJOutput as an ImageJ stack, which will open in a new window; this
 "format" does not create any files on disk. | 
| OUTPUT_JPGOutput as a sequence of Joint Photographic Experts Group (JPEG) files. | 
| OUTPUT_PNGOutput 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_AVI
public static final ImageExporter.OutputFormat OUTPUT_GIF
public static final ImageExporter.OutputFormat OUTPUT_IMAGEJ
public static final ImageExporter.OutputFormat OUTPUT_CLIPBOARD
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