com.aspose.slides.export
Enum SaveFormat

java.lang.Object
  extended by java.lang.Enum<SaveFormat>
      extended by com.aspose.slides.export.SaveFormat
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SaveFormat>

public enum SaveFormat
extends java.lang.Enum<SaveFormat>

Enumeration which defines the format of a saved presentation.


Enum Constant Summary
PDF
          Save presentation in PDF format.
PPSX
          Save presentation in PPSX format.
PPT
          Save presentation in PPT or PPS format.
PPTX
          Save presentation in PPTX format.
TIFF
          Save presentation as multi-page TIFF image.
XPS
          Save presentation in XPS format.
 
Method Summary
 int getId()
           
static SaveFormat valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SaveFormat[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PPT

public static final SaveFormat PPT
Save presentation in PPT or PPS format.


PDF

public static final SaveFormat PDF
Save presentation in PDF format.


XPS

public static final SaveFormat XPS
Save presentation in XPS format.


PPTX

public static final SaveFormat PPTX
Save presentation in PPTX format.


PPSX

public static final SaveFormat PPSX
Save presentation in PPSX format.


TIFF

public static final SaveFormat TIFF
Save presentation as multi-page TIFF image.

Method Detail

values

public static SaveFormat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SaveFormat c : SaveFormat.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SaveFormat valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getId

public int getId()