public enum ExportPDFTargetFormat extends Enum<ExportPDFTargetFormat>
ExportPDFOperation
Enum Constant and Description |
---|
DOC
Represents "application/msword" media type
|
DOCX
Represents "application/vnd.openxmlformats-officedocument.wordprocessingml.document" media type
|
PPTX
Represents "application/vnd.openxmlformats-officedocument.presentationml.presentation" media type
|
RTF
Represents "text/rtf" media type
|
XLSX
Represents "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" media type
|
Modifier and Type | Method and Description |
---|---|
String |
getFileExt()
Returns the file extension of this format
|
static ExportPDFTargetFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportPDFTargetFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportPDFTargetFormat DOC
public static final ExportPDFTargetFormat DOCX
public static final ExportPDFTargetFormat PPTX
public static final ExportPDFTargetFormat RTF
public static final ExportPDFTargetFormat XLSX
public static ExportPDFTargetFormat[] values()
for (ExportPDFTargetFormat c : ExportPDFTargetFormat.values()) System.out.println(c);
public static ExportPDFTargetFormat 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 getFileExt()
Copyright © 2022 Adobe. All rights reserved.