枚举类 BarShape

java.lang.Object
java.lang.Enum<BarShape>
com.grapecity.documents.excel.drawing.BarShape
所有已实现的接口:
Serializable, Comparable<BarShape>, Constable

public enum BarShape extends Enum<BarShape>
指定与3-D条形图或柱状图一起使用的形状。
  • 枚举常量详细资料

    • Box

      public static final BarShape Box
      指定一个盒子。
    • PyramidToPoint

      public static final BarShape PyramidToPoint
      指定一个金字塔,逐渐缩小到一个点的值。
    • PyramidToMax

      public static final BarShape PyramidToMax
      指定一个金字塔,在指定值处截断。
    • Cylinder

      public static final BarShape Cylinder
      指定一个圆柱体。
    • ConeToPoint

      public static final BarShape ConeToPoint
      指定一个圆锥体,其顶部为一个点值。
    • ConeToMax

      public static final BarShape ConeToMax
      指定一个圆锥体,其值被截断。
  • 方法详细资料

    • values

      public static BarShape[] values()
      返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同
      返回:
      包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
    • valueOf

      public static BarShape valueOf(String name)
      返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类没有带有指定名称的常量
      NullPointerException - 如果参数为空值