Package de.espirit.firstspirit.storage
Enum Class ChangeType
- All Implemented Interfaces:
Serializable
,Comparable<ChangeType>
,Constable
This enum represents change types used for storeelement changes in
RevisionMetaData.getChangedStoreElements()
- Since:
- 4.0.59
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates changes in children list of the related storeelement.
Belonging change detail is of typeChildrenChangeDetail
Indicates changes indata
of related storeelement.
Belonging change detail is of typeDataChangeDetail
Indicates permission changes in related storeelement.Indicates changes in the reference list of the related store element.
Belonging change detail is of typeReferencesChangeDetail
Indicates any changes in xml node of related storeelement (e.g. displayname changes). -
Method Summary
Modifier and TypeMethodDescriptionstatic ChangeType
Returns the enum constant of this class with the specified name.static ChangeType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PERMISSION
Indicates permission changes in related storeelement. Belonging change detail is of typePermissionChangeDetail
- Since:
- 4.0.59
-
XML
Indicates any changes in xml node of related storeelement (e.g. displayname changes).- Since:
- 4.0.90
-
DATA_XML
Indicates changes indata
of related storeelement.
Belonging change detail is of typeDataChangeDetail
- Since:
- 4.0.90
-
META_DATA_XML
- Since:
- 4.0.90
-
CHILDREN
Indicates changes in children list of the related storeelement.
Belonging change detail is of typeChildrenChangeDetail
- Since:
- 4.0.120
-
REFERENCES
Indicates changes in the reference list of the related store element.
Belonging change detail is of typeReferencesChangeDetail
- Since:
- 4.2.400
-
-
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
-