Enum Class RevisionType

java.lang.Object
java.lang.Enum<RevisionType>
io.keikai.model.RevisionType
All Implemented Interfaces:
Serializable, Comparable<RevisionType>, Constable

public enum RevisionType extends Enum<RevisionType>
Types of tracked revisions (changes) in a workbook. Each type maps to an OOXML revision element (rcc, rfmt, rrc, ris, rsnm, rm).
Since:
7.0.0
  • Enum Constant Details

    • CELL_CHANGE

      public static final RevisionType CELL_CHANGE
      Cell value change (rcc element)
    • FORMAT_CHANGE

      public static final RevisionType FORMAT_CHANGE
      Cell format change (rfmt element)
    • INSERT_ROW

      public static final RevisionType INSERT_ROW
      Row insertion (rrc element with insertRow action)
    • INSERT_COLUMN

      public static final RevisionType INSERT_COLUMN
      Column insertion (rrc element with insertCol action)
    • DELETE_ROW

      public static final RevisionType DELETE_ROW
      Row deletion (rrc element with deleteRow action)
    • DELETE_COLUMN

      public static final RevisionType DELETE_COLUMN
      Column deletion (rrc element with deleteCol action)
    • INSERT_SHEET

      public static final RevisionType INSERT_SHEET
      Sheet insertion (ris element)
    • RENAME_SHEET

      public static final RevisionType RENAME_SHEET
      Sheet rename (rsnm element)
    • CELL_MOVE

      public static final RevisionType CELL_MOVE
      Cell move (rm element)
  • Method Details

    • values

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