public static enum WorklogInput.AdjustEstimate extends Enum<WorklogInput.AdjustEstimate>
Enum Constant and Description |
---|
AUTO
Automatically decrease estimate based on given time spent.
|
LEAVE
Leave estimate as is.
|
MANUAL
Decrease estimate manually by given value.
|
NEW
Set remaining estimate to given value.
|
Modifier and Type | Method and Description |
---|---|
static WorklogInput.AdjustEstimate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorklogInput.AdjustEstimate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorklogInput.AdjustEstimate NEW
public static final WorklogInput.AdjustEstimate LEAVE
public static final WorklogInput.AdjustEstimate MANUAL
public static final WorklogInput.AdjustEstimate AUTO
public final String restValue
public static WorklogInput.AdjustEstimate[] values()
for (WorklogInput.AdjustEstimate c : WorklogInput.AdjustEstimate.values()) System.out.println(c);
public static WorklogInput.AdjustEstimate 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 © 2013 Atlassian. All Rights Reserved.