public enum WorkItemAllowedAttachmentLocation extends java.lang.Enum<WorkItemAllowedAttachmentLocation>
Enum Constant and Description |
---|
NONE |
WORK_ITEM_AND_COMMENTS |
WORK_ITEM_COMMENTS_ONLY |
WORK_ITEM_ONLY |
Modifier and Type | Method and Description |
---|---|
static WorkItemAllowedAttachmentLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorkItemAllowedAttachmentLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkItemAllowedAttachmentLocation WORK_ITEM_ONLY
public static final WorkItemAllowedAttachmentLocation WORK_ITEM_COMMENTS_ONLY
public static final WorkItemAllowedAttachmentLocation WORK_ITEM_AND_COMMENTS
public static final WorkItemAllowedAttachmentLocation NONE
public static WorkItemAllowedAttachmentLocation[] values()
for (WorkItemAllowedAttachmentLocation c : WorkItemAllowedAttachmentLocation.values()) System.out.println(c);
public static WorkItemAllowedAttachmentLocation 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