public enum RevisionType extends Enum<RevisionType>
Enum Constant and Description |
---|
Deletion
Content was removed from the document.
|
FormatChange
Change of formatting was applied to the parent node.
|
Insertion
New content was inserted in the document.
|
Moving
Content was moved in the document.
|
StyleDefinitionChange
Change of formatting was applied to the parent style.
|
Modifier and Type | Method and Description |
---|---|
static RevisionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RevisionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RevisionType Deletion
public static final RevisionType FormatChange
public static final RevisionType Insertion
public static final RevisionType Moving
public static final RevisionType StyleDefinitionChange
public static RevisionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static RevisionType[] values()
for (RevisionType c : RevisionType.values()) System.out.println(c);
Copyright © 2022. All rights reserved.