[]
        
立即试用
(Showing Draft Content)

CellTypeDirection

Enum Class CellTypeDirection

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

public enum CellTypeDirection extends Enum<CellTypeDirection>
指定复选框或单选列表的顺序。
  • Enum Constant Details

    • Horizontal

      public static final CellTypeDirection Horizontal
      指定顺序为水平。
    • Vertical

      public static final CellTypeDirection Vertical
      指定排序为垂直。
  • Method Details

    • values

      public static CellTypeDirection[] 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 CellTypeDirection 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
    • getValue

      public int getValue()
      获取表示枚举常量的整数值。
      Returns:
      枚举常量的序数值。
    • getCellTypeDirection

      public static CellTypeDirection getCellTypeDirection(int value)
      返回复选框或单选列表的方向。
      Parameters:
      value - 表示方向的整数值。
      Returns:
      与指定值关联的CellTypeDirection枚举常量,如果未找到匹配项,则返回null。