public static enum SaveFormat.Format extends Enum<SaveFormat.Format>
Enum Constant and Description |
---|
Doc
Saves the document in the Microsoft Word 97 - 2007 Document format.
|
Docx
Saves the document as an Office Open XML Word processing ML Document (macro-free).
|
Odt
Saves the document as an ODF Text Document.
|
Text
Saves the document in the plain text format.
|
Modifier and Type | Method and Description |
---|---|
static SaveFormat.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaveFormat.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveFormat.Format Text
public static final SaveFormat.Format Doc
public static final SaveFormat.Format Docx
public static final SaveFormat.Format Odt
public static SaveFormat.Format[] values()
for (SaveFormat.Format c : SaveFormat.Format.values()) System.out.println(c);
public static SaveFormat.Format 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 nullCopyright © 2021 Aspose. All rights reserved.