public enum AttachmentType extends Enum<AttachmentType>
| Enum Constant and Description |
|---|
BOX_COM |
DROPBOX |
EGNYTE |
FILE |
GOOGLE_DRIVE |
LINK |
ONEDRIVE |
| Modifier and Type | Method and Description |
|---|---|
static AttachmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttachmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachmentType FILE
public static final AttachmentType GOOGLE_DRIVE
public static final AttachmentType LINK
public static final AttachmentType BOX_COM
public static final AttachmentType DROPBOX
public static final AttachmentType EGNYTE
public static final AttachmentType ONEDRIVE
public static AttachmentType[] values()
for (AttachmentType c : AttachmentType.values()) System.out.println(c);
public static AttachmentType 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 © 2014–2017 Smartsheet. All rights reserved.