Enum Class DataLabelNumber

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

public enum DataLabelNumber extends Enum<DataLabelNumber>
Specifies whether the value and/or the percentage of a data point should be displayed within a data label.
  • Enum Constant Details

    • PERCENTAGE

      public static final DataLabelNumber PERCENTAGE
      Only the percentage value should be displayed.
    • VALUE

      public static final DataLabelNumber VALUE
      Only the value should be displayed within the data label.
    • VALUE_AND_PERCENTAGE

      public static final DataLabelNumber VALUE_AND_PERCENTAGE
      Both the value and the percentage should be displayed.
    • NONE

      public static final DataLabelNumber NONE
      None.
  • Method Details

    • values

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