public enum PsSaveFormat extends Enum<PsSaveFormat>
This enumeration contains available options of saving format. It can be PS or EPS. EPS is used for only 1-paged documents while PS file can contain any number of pages.
| Enum Constant and Description |
|---|
EPS
This option indicates that resulting document must be Encapsulated PostScript (EPS) file.
|
PS
This option indicates that resulting document must be PostScript (PS) or Encapsulated PostScript (EPS) file.
|
| Modifier and Type | Method and Description |
|---|---|
static PsSaveFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PsSaveFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PsSaveFormat PS
This option indicates that resulting document must be PostScript (PS) or Encapsulated PostScript (EPS) file.
public static final PsSaveFormat EPS
This option indicates that resulting document must be Encapsulated PostScript (EPS) file. It is used only for 1-paged documents;
public static PsSaveFormat[] values()
for (PsSaveFormat c : PsSaveFormat.values()) System.out.println(c);
public static PsSaveFormat 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 © 2025 Aspose. All Rights Reserved.