Enum Class LabelArrangement

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

public enum LabelArrangement extends Enum<LabelArrangement>
Represents the arrangement of labels on an axis.
  • Enum Constant Details

    • SIDE_BY_SIDE

      public static final LabelArrangement SIDE_BY_SIDE
      Labels are not staggered, they are aligned on one line.
    • STAGGER_EVEN

      public static final LabelArrangement STAGGER_EVEN
      Even labels are aligned on the same line as used for side by side arrangement. Counting starts with one, so the first label is odd.
    • STAGGER_ODD

      public static final LabelArrangement STAGGER_ODD
      All odd labels are aligned on the line used for side by side arrangement. Counting starts with one, so the first label is odd.
    • NONE

      public static final LabelArrangement NONE
      None
  • Method Details

    • values

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