[]
        
立即试用
(Showing Draft Content)

AboveBelow

Enum Class AboveBelow

java.lang.Object
java.lang.Enum<AboveBelow>
com.grapecity.documents.excel.AboveBelow
All Implemented Interfaces:
Serializable, Comparable<AboveBelow>, Constable

public enum AboveBelow extends Enum<AboveBelow>
指定值是高于还是低于平均值。
  • Enum Constant Details

    • AboveAverage

      public static final AboveBelow AboveAverage
      指定高于平均值。
    • BelowAverage

      public static final AboveBelow BelowAverage
      指定低于平均值。
    • EqualAboveAverage

      public static final AboveBelow EqualAboveAverage
      指定等于或高于平均值。
    • EqualBelowAverage

      public static final AboveBelow EqualBelowAverage
      指定等于或低于平均值。
    • AboveStdDev

      public static final AboveBelow AboveStdDev
      指定高于标准差。
    • BelowStdDev

      public static final AboveBelow BelowStdDev
      指定低于标准差。
  • Method Details

    • values

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