public static enum IFileDiff.Status extends java.lang.Enum<IFileDiff.Status>
| Enum Constant and Description |
|---|
CONTENT |
IDENTICAL |
LEFT_ONLY |
RIGHT_ONLY |
TYPES |
| Modifier and Type | Method and Description |
|---|---|
static IFileDiff.Status |
fromString(java.lang.String serverValue) |
static IFileDiff.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IFileDiff.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IFileDiff.Status LEFT_ONLY
public static final IFileDiff.Status RIGHT_ONLY
public static final IFileDiff.Status CONTENT
public static final IFileDiff.Status TYPES
public static final IFileDiff.Status IDENTICAL
public static IFileDiff.Status[] values()
for (IFileDiff.Status c : IFileDiff.Status.values()) System.out.println(c);
public static IFileDiff.Status 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 nullpublic static IFileDiff.Status fromString(java.lang.String serverValue)