Enum Class TextCombine

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

public enum TextCombine extends Enum<TextCombine>
Represents whether to combine characters so that they are displayed within two lines.
  • Enum Constant Details

    • LETTERS

      public static final TextCombine LETTERS
      Display text in Kumimoji. Up to five (5) characters are combined within two lines and are displayed with a reduced size in a single wide-cell character. Additional characters are displayed as normal text.
    • LINES

      public static final TextCombine LINES
      Displays text in Warichu. All characters with the style:text-combine attribute that immediately follow each other are displayed within two lines of approximately the same length. A line break may occur between any two characters to meet this constraint.
    • NONE

      public static final TextCombine NONE
      Characters should not be combined.
  • Method Details

    • values

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