public enum AttachmentSubType extends Enum<AttachmentSubType>
| Enum Constant and Description |
|---|
DOCUMENT |
DRAWING |
FOLDER |
PDF |
PRESENTATION |
SPREADSHEET |
| Modifier and Type | Method and Description |
|---|---|
static AttachmentSubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttachmentSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachmentSubType DOCUMENT
public static final AttachmentSubType SPREADSHEET
public static final AttachmentSubType PRESENTATION
public static final AttachmentSubType PDF
public static final AttachmentSubType DRAWING
public static final AttachmentSubType FOLDER
public static AttachmentSubType[] values()
for (AttachmentSubType c : AttachmentSubType.values()) System.out.println(c);
public static AttachmentSubType 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–2019 Smartsheet. All rights reserved.