public enum SCMChangeLogFileChangeType extends java.lang.Enum<SCMChangeLogFileChangeType>
| Enum Constant and Description |
|---|
ADDED
The file has been added
|
COPIED
Copy
|
DELETED
The file has been deleted
|
MODIFIED
The file has been modified
|
RENAMED
Renaming
|
UNDEFINED
Change not managed
|
| Modifier and Type | Method and Description |
|---|---|
static SCMChangeLogFileChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SCMChangeLogFileChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCMChangeLogFileChangeType ADDED
public static final SCMChangeLogFileChangeType MODIFIED
public static final SCMChangeLogFileChangeType DELETED
public static final SCMChangeLogFileChangeType RENAMED
public static final SCMChangeLogFileChangeType COPIED
public static final SCMChangeLogFileChangeType UNDEFINED
public static SCMChangeLogFileChangeType[] values()
for (SCMChangeLogFileChangeType c : SCMChangeLogFileChangeType.values()) System.out.println(c);
public static SCMChangeLogFileChangeType 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