com.aspose.slides
Enum LoadFormat

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

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


Enum Constant Summary
Auto
          Instructs Aspose.Slides to recognize the format automatically.
Odp
          OpenOffice ODF Presentation.
Pps
          Microsoft PowerPoint 97-2003 SlideShow.
Ppsx
          Microsoft Office Open XML PresentationML SlideShow.
Ppt
          Microsoft PowerPoint 97-2003 Presentation.
Pptx
          Microsoft Office Open XML PresentationML Document.
 
Method Summary
 int getId()
           
static LoadFormat valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LoadFormat[] 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

Auto

public static final LoadFormat Auto
Instructs Aspose.Slides to recognize the format automatically.


Ppt

public static final LoadFormat Ppt
Microsoft PowerPoint 97-2003 Presentation.


Pps

public static final LoadFormat Pps
Microsoft PowerPoint 97-2003 SlideShow.


Pptx

public static final LoadFormat Pptx
Microsoft Office Open XML PresentationML Document.


Ppsx

public static final LoadFormat Ppsx
Microsoft Office Open XML PresentationML SlideShow.


Odp

public static final LoadFormat Odp
OpenOffice ODF Presentation.

Method Detail

values

public static LoadFormat[] 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 (LoadFormat c : LoadFormat.values())
    System.out.println(c);

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

valueOf

public static LoadFormat 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()