Package ro.sync.ecss.component
Enum Class RenderingInfoChangeType
- All Implemented Interfaces:
Serializable
,Comparable<RenderingInfoChangeType>
,Constable
@API(type=EXTENDABLE,
src=PUBLIC)
public enum RenderingInfoChangeType
extends Enum<RenderingInfoChangeType>
The type of the rendering info change.
- Since:
- 15.2
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA pseudoclass of the node was changed.The change was a structural change of the document: modify the elements in the document or one of their attribute.The change was a simple text edit. -
Method Summary
Modifier and TypeMethodDescriptionstatic RenderingInfoChangeType
Returns the enum constant of this class with the specified name.static RenderingInfoChangeType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TEXT_EDIT
The change was a simple text edit. -
STRUCTURE_CHANGE
The change was a structural change of the document: modify the elements in the document or one of their attribute. -
PSEUDO_CLASS_CHANGE
A pseudoclass of the node was changed.
-
-
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
-