[]
        
(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>
Specifies direction of the checkbox or radio list.
  • Enum Constant Details

    • Horizontal

      public static final CellTypeDirection Horizontal
      Specifies the direction is horizontal.
    • Vertical

      public static final CellTypeDirection Vertical
      Specifies the direction is 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()
      Retrieves the integer value representing the enum constant.
      Returns:
      The ordinal value of the enum constant.
    • getCellTypeDirection

      public static CellTypeDirection getCellTypeDirection(int value)
      Returns the direction of the checkbox or radio list.
      Parameters:
      value - The integer value representing the direction.
      Returns:
      The CellTypeDirection enum constant associated with the specified value, or null if no match is found.