public enum ChangesetType extends Enum<ChangesetType>
| Enum Constant and Description |
|---|
DIFF
Only changed files of a project
|
FULL
All files of a project
|
| Modifier and Type | Method and Description |
|---|---|
static ChangesetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangesetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangesetType FULL
public static final ChangesetType DIFF
public static ChangesetType[] values()
for (ChangesetType c : ChangesetType.values()) System.out.println(c);
public static ChangesetType 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 nullCopyright © 2004–2020 OpenL Tablets. All rights reserved.