public enum OutputFormats extends Enum<OutputFormats>
Enum Constant and Description |
---|
BMP |
DOC |
DOCX |
GIF |
JPEG |
MD |
MHTML |
PDF |
PNG |
TIFF |
XPS |
Modifier and Type | Method and Description |
---|---|
static OutputFormats |
fromValue(String text) |
String |
toString() |
static OutputFormats |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputFormats[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFormats JPEG
public static final OutputFormats PNG
public static final OutputFormats BMP
public static final OutputFormats GIF
public static final OutputFormats TIFF
public static final OutputFormats MD
public static final OutputFormats MHTML
public static final OutputFormats PDF
public static final OutputFormats XPS
public static final OutputFormats DOC
public static final OutputFormats DOCX
public static OutputFormats[] values()
for (OutputFormats c : OutputFormats.values()) System.out.println(c);
public static OutputFormats 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 nullpublic String toString()
toString
in class Enum<OutputFormats>
public static OutputFormats fromValue(String text)
Copyright © 2022. All rights reserved.