Enum SlideLayout

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SlideLayout>

    public enum SlideLayout
    extends java.lang.Enum<SlideLayout>
    Date: 11/5/11
    • Enum Constant Detail

      • TITLE

        public static final SlideLayout TITLE
        Title layout with centered title and subtitle placeholders
      • TEXT

        public static final SlideLayout TEXT
        Title and text
      • TWO_COL_TX

        public static final SlideLayout TWO_COL_TX
      • TEXT_AND_CHART

        public static final SlideLayout TEXT_AND_CHART
      • CHART_AND_TEXT

        public static final SlideLayout CHART_AND_TEXT
        Title, chart on left and text on right
      • CHART

        public static final SlideLayout CHART
        Title and chart
      • TX_AND_CLIP_ART

        public static final SlideLayout TX_AND_CLIP_ART
      • CLIP_ART_AND_TEXT

        public static final SlideLayout CLIP_ART_AND_TEXT
        Title, clipart on left, text on right
      • TITLE_ONLY

        public static final SlideLayout TITLE_ONLY
        Title only
      • TX_AND_OBJ

        public static final SlideLayout TX_AND_OBJ
      • OBJ_AND_TX

        public static final SlideLayout OBJ_AND_TX
      • TITLE_AND_CONTENT

        public static final SlideLayout TITLE_AND_CONTENT
        title and content
      • TX_AND_MEDIA

        public static final SlideLayout TX_AND_MEDIA
      • MEDIA_AND_TX

        public static final SlideLayout MEDIA_AND_TX
      • OBJ_OVER_TX

        public static final SlideLayout OBJ_OVER_TX
      • TX_OVER_OBJ

        public static final SlideLayout TX_OVER_OBJ
      • TX_AND_TWO_OBJ

        public static final SlideLayout TX_AND_TWO_OBJ
      • TWO_OBJ_AND_TX

        public static final SlideLayout TWO_OBJ_AND_TX
      • TWO_OBJ_OVER_TX

        public static final SlideLayout TWO_OBJ_OVER_TX
      • CLIP_ART_AND_VERT_TX

        public static final SlideLayout CLIP_ART_AND_VERT_TX
      • VERT_TITLE_AND_TX

        public static final SlideLayout VERT_TITLE_AND_TX
      • VERT_TITLE_AND_TX_OVER_CHART

        public static final SlideLayout VERT_TITLE_AND_TX_OVER_CHART
      • OBJ_AND_TWO_OBJ

        public static final SlideLayout OBJ_AND_TWO_OBJ
      • TWO_OBJ_AND_OBJ

        public static final SlideLayout TWO_OBJ_AND_OBJ
      • SECTION_HEADER

        public static final SlideLayout SECTION_HEADER
        Section Header
      • TWO_TX_TWO_OBJ

        public static final SlideLayout TWO_TX_TWO_OBJ
    • Method Detail

      • values

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

        public static SlideLayout 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