Enum Class ListAutoNumber

java.lang.Object
java.lang.Enum<ListAutoNumber>
org.apache.poi.xssf.usermodel.ListAutoNumber
All Implemented Interfaces:
Serializable, Comparable<ListAutoNumber>, Constable

public enum ListAutoNumber extends Enum<ListAutoNumber>
Specifies type of automatic numbered bullet points that should be applied to a paragraph.
  • Enum Constant Details

    • ALPHA_LC_PARENT_BOTH

      public static final ListAutoNumber ALPHA_LC_PARENT_BOTH
      (a), (b), (c), ...
    • ALPHA_UC_PARENT_BOTH

      public static final ListAutoNumber ALPHA_UC_PARENT_BOTH
      (A), (B), (C), ...
    • ALPHA_LC_PARENT_R

      public static final ListAutoNumber ALPHA_LC_PARENT_R
      a), b), c), ...
    • ALPHA_UC_PARENT_R

      public static final ListAutoNumber ALPHA_UC_PARENT_R
      A), B), C), ...
    • ALPHA_LC_PERIOD

      public static final ListAutoNumber ALPHA_LC_PERIOD
      a., b., c., ...
    • ALPHA_UC_PERIOD

      public static final ListAutoNumber ALPHA_UC_PERIOD
      A., B., C., ...
    • ARABIC_PARENT_BOTH

      public static final ListAutoNumber ARABIC_PARENT_BOTH
      (1), (2), (3), ...
    • ARABIC_PARENT_R

      public static final ListAutoNumber ARABIC_PARENT_R
      1), 2), 3), ...
    • ARABIC_PERIOD

      public static final ListAutoNumber ARABIC_PERIOD
      1., 2., 3., ...
    • ARABIC_PLAIN

      public static final ListAutoNumber ARABIC_PLAIN
      1, 2, 3, ...
    • ROMAN_LC_PARENT_BOTH

      public static final ListAutoNumber ROMAN_LC_PARENT_BOTH
      (i), (ii), (iii), ...
    • ROMAN_UC_PARENT_BOTH

      public static final ListAutoNumber ROMAN_UC_PARENT_BOTH
      (I), (II), (III), ...
    • ROMAN_LC_PARENT_R

      public static final ListAutoNumber ROMAN_LC_PARENT_R
      i), ii), iii), ...
    • ROMAN_UC_PARENT_R

      public static final ListAutoNumber ROMAN_UC_PARENT_R
      I), II), III), ...
    • ROMAN_LC_PERIOD

      public static final ListAutoNumber ROMAN_LC_PERIOD
      i., ii., iii., ...
    • ROMAN_UC_PERIOD

      public static final ListAutoNumber ROMAN_UC_PERIOD
      I., II., III., ...
    • CIRCLE_NUM_DB_PLAIN

      public static final ListAutoNumber CIRCLE_NUM_DB_PLAIN
      Dbl-byte circle numbers
    • CIRCLE_NUM_WD_BLACK_PLAIN

      public static final ListAutoNumber CIRCLE_NUM_WD_BLACK_PLAIN
      Wingdings black circle numbers
    • CIRCLE_NUM_WD_WHITE_PLAIN

      public static final ListAutoNumber CIRCLE_NUM_WD_WHITE_PLAIN
      Wingdings white circle numbers
  • Method Details

    • values

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

      public static ListAutoNumber valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null