Enum SlideAtomLayout.SlideLayoutType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BIG_OBJECT
      Presentation slide layout with one body placeholder shape.
      BLANK_SLIDE
      Presentation slide layout with no placeholder shape.
      COLUMN_TWO_ROWS
      Presentation slide layout with one title and three body placeholder shapes split into two columns.
      FOUR_OBJECTS
      Presentation slide layout with one title and four body placeholder shapes.
      HANDOUT
      Only header, footer and date placeholders
      MASTER_NOTES
      ??? (not documented in spec)
      MASTER_SLIDE
      ??? (not documented in spec)
      MASTER_TITLE
      Title master slide layout with one title and one subtitle placeholder shape.
      NOTES_TITLE_BODY
      ??? (not documented in spec)
      TITLE_2_ROW_BOTTOM_2_COLUMN_BODY
      ??? (not documented in spec)
      TITLE_BODY
      Presentation slide or main master slide layout with one title and one body placeholder shape.
      TITLE_ONLY
      Presentation slide layout with one title placeholder shape.
      TITLE_SLIDE
      One title and one subtitle placeholder shapes.
      TWO_COLUMNS
      Presentation slide layout with one title and two body placeholder shapes stacked horizontally.
      TWO_COLUMNS_ROW
      Presentation slide layout with one title and three body placeholder shapes split into two rows.
      TWO_ROWS
      Presentation slide layout with one title and two body placeholder shapes stacked vertically.
      TWO_ROWS_COLUMN
      Presentation slide layout with one title and three body placeholder shapes split into two columns.
      VERTICAL_TITLE_BODY
      Presentation slide layout with a vertical title placeholder shape on the right and a body placeholder shape on the left.
      VERTICAL_TWO_ROWS
      Presentation slide layout with a vertical title placeholder shape on the right and two body placeholder shapes in two columns on the left.
    • Method Detail

      • values

        public static SlideAtomLayout.SlideLayoutType[] 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 (SlideAtomLayout.SlideLayoutType c : SlideAtomLayout.SlideLayoutType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SlideAtomLayout.SlideLayoutType 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
      • getNativeId

        public int getNativeId()