Enum DocumentAtom.SlideSize

    • Enum Constant Detail

      • 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 Detail

      • values

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