public static enum ChangesetClosedException.Source extends 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(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(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 null