public static enum IssueStatusProvider.Status extends Enum<IssueStatusProvider.Status>
Enum.EnumDesc<E extends Enum<E>>
Enum Constant and Description |
---|
CONFLICT
There are incoming and outgoing changes at once.
|
INCOMING_MODIFIED
The Issue was modified (remotely) and the user hasn't seen it yet.
|
INCOMING_NEW
The Issue appeared for the first time on the client and the user hasn't seen it yet.
|
OUTGOING_MODIFIED
There are outgoing changes in the Issue.
|
OUTGOING_NEW
The Issue is new on client and haven't been submited yet.
|
SEEN
The user has seen the incoming changes and there haven't been any other incoming changes since then.
|
Modifier and Type | Method and Description |
---|---|
static IssueStatusProvider.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueStatusProvider.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueStatusProvider.Status INCOMING_NEW
public static final IssueStatusProvider.Status INCOMING_MODIFIED
public static final IssueStatusProvider.Status OUTGOING_NEW
public static final IssueStatusProvider.Status OUTGOING_MODIFIED
public static final IssueStatusProvider.Status CONFLICT
public static final IssueStatusProvider.Status SEEN
public static IssueStatusProvider.Status[] values()
public static IssueStatusProvider.Status 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