public static enum VcsChangeInfo.ContentType extends java.lang.Enum<VcsChangeInfo.ContentType>
| Enum Constant and Description |
|---|
AFTER_CHANGE
File content after the change
|
BEFORE_CHANGE
File content before the change
|
| Modifier and Type | Method and Description |
|---|---|
static VcsChangeInfo.ContentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VcsChangeInfo.ContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VcsChangeInfo.ContentType BEFORE_CHANGE
public static final VcsChangeInfo.ContentType AFTER_CHANGE
public static VcsChangeInfo.ContentType[] values()
for (VcsChangeInfo.ContentType c : VcsChangeInfo.ContentType.values()) System.out.println(c);
public static VcsChangeInfo.ContentType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null