public static enum ChangesetClosedException.Source extends java.lang.Enum<ChangesetClosedException.Source>
| Enum Constant and Description |
|---|
UNSPECIFIED
Unspecified source
|
UPDATE_CHANGESET
The exception was thrown when a changeset was updated.
|
UPLOAD_DATA
The exception was thrown when data was uploaded to the changeset.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangesetClosedException.Source |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangesetClosedException.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangesetClosedException.Source UPDATE_CHANGESET
public static final ChangesetClosedException.Source UPLOAD_DATA
public static final ChangesetClosedException.Source UNSPECIFIED
public static ChangesetClosedException.Source[] values()
for (ChangesetClosedException.Source c : ChangesetClosedException.Source.values()) System.out.println(c);
public static ChangesetClosedException.Source 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