Enum Class LabelFollowedBy

java.lang.Object
java.lang.Enum<LabelFollowedBy>
com.independentsoft.office.odf.styles.LabelFollowedBy
All Implemented Interfaces:
Serializable, Comparable<LabelFollowedBy>, Constable

public enum LabelFollowedBy extends Enum<LabelFollowedBy>
Represents the character that is inserted behind a list label.
  • Enum Constant Details

    • LIST_TAB

      public static final LabelFollowedBy LIST_TAB
      A tab character is inserted after a list label before the text starts.
    • SPACE

      public static final LabelFollowedBy SPACE
      A SPACE (U+0020) character is inserted after a list label before the text starts.
    • NOTHING

      public static final LabelFollowedBy NOTHING
      Text starts directly after a list label.
  • Method Details

    • values

      public static LabelFollowedBy[] 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 LabelFollowedBy 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