Package io.keikai.model
Enum Class RevisionType
- All Implemented Interfaces:
Serializable,Comparable<RevisionType>,Constable
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCell value change (rcc element)Cell move (rm element)Column deletion (rrc element with deleteCol action)Row deletion (rrc element with deleteRow action)Cell format change (rfmt element)Column insertion (rrc element with insertCol action)Row insertion (rrc element with insertRow action)Sheet insertion (ris element)Sheet rename (rsnm element) -
Method Summary
Modifier and TypeMethodDescriptionstatic RevisionTypeReturns the enum constant of this class with the specified name.static RevisionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CELL_CHANGE
Cell value change (rcc element) -
FORMAT_CHANGE
Cell format change (rfmt element) -
INSERT_ROW
Row insertion (rrc element with insertRow action) -
INSERT_COLUMN
Column insertion (rrc element with insertCol action) -
DELETE_ROW
Row deletion (rrc element with deleteRow action) -
DELETE_COLUMN
Column deletion (rrc element with deleteCol action) -
INSERT_SHEET
Sheet insertion (ris element) -
RENAME_SHEET
Sheet rename (rsnm element) -
CELL_MOVE
Cell move (rm element)
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-