[]
        
(Showing Draft Content)

AutoMergeDirection

Enum Class AutoMergeDirection

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

public enum AutoMergeDirection extends Enum<AutoMergeDirection>
Indicates the auto merge direction.
  • Enum Constant Details

    • None

      public static final AutoMergeDirection None
      Indicates to cancel the auto merge.
    • Column

      public static final AutoMergeDirection Column
      Indicates to apply the auto merge in column direction.
    • Row

      public static final AutoMergeDirection Row
      Indicates to apply the auto merge in row direction.
    • ColumnRow

      public static final AutoMergeDirection ColumnRow
      Indicates to apply the auto merge in column direction preferentially then in row direction.
    • RowColumn

      public static final AutoMergeDirection RowColumn
      Indicates to apply the auto merge in row direction preferentially then in column direction.
  • Method Details

    • values

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