Enum DocumentAtom.SlideSize

java.lang.Object
java.lang.Enum<DocumentAtom.SlideSize>
org.apache.poi.hslf.record.DocumentAtom.SlideSize
All Implemented Interfaces:
Serializable, Comparable<DocumentAtom.SlideSize>, java.lang.constant.Constable
Enclosing class:
DocumentAtom

public static enum DocumentAtom.SlideSize extends Enum<DocumentAtom.SlideSize>
Holds the different Slide Size values
  • Enum Constant Details

    • ON_SCREEN

      public static final DocumentAtom.SlideSize ON_SCREEN
      Slide size ratio is consistent with a computer screen.
    • LETTER_SIZED_PAPER

      public static final DocumentAtom.SlideSize LETTER_SIZED_PAPER
      Slide size ratio is consistent with letter paper.
    • A4_SIZED_PAPER

      public static final DocumentAtom.SlideSize A4_SIZED_PAPER
      Slide size ratio is consistent with A4 paper.
    • ON_35MM

      public static final DocumentAtom.SlideSize ON_35MM
      Slide size ratio is consistent with 35mm photo slides.
    • OVERHEAD

      public static final DocumentAtom.SlideSize OVERHEAD
      Slide size ratio is consistent with overhead projector slides.
    • CUSTOM

      public static final DocumentAtom.SlideSize CUSTOM
      Slide size ratio that is not consistent with any of the other specified slide sizes in this enumeration.
  • Method Details

    • values

      public static DocumentAtom.SlideSize[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static DocumentAtom.SlideSize valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null