public enum ContentDiffType extends Enum<ContentDiffType>
| Enum Constant and Description |
|---|
CONTENT_ADDED |
CONTENT_DELETED |
CONTENT_MODIFIED |
CONTENT_UNCHANGED |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isChange() |
static ContentDiffType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContentDiffType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentDiffType CONTENT_UNCHANGED
public static final ContentDiffType CONTENT_MODIFIED
public static final ContentDiffType CONTENT_ADDED
public static final ContentDiffType CONTENT_DELETED
public static ContentDiffType[] values()
for (ContentDiffType c : ContentDiffType.values()) System.out.println(c);
public static ContentDiffType 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 boolean isChange()
Copyright © 2020. All rights reserved.