public enum DepositFileType extends Enum<DepositFileType>
file.| Enum Constant and Description |
|---|
bulksub_meta_xml
Metadata required by the submission process.
|
figure
Manuscript figure uploaded by an end-user.
|
manuscript
Manuscript file uploaded by an end-user.
|
supplement
|
table
Manuscript table uploaded by an end-user.
|
| Modifier and Type | Method and Description |
|---|---|
static DepositFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DepositFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DepositFileType bulksub_meta_xml
public static final DepositFileType manuscript
public static final DepositFileType supplement
public static final DepositFileType figure
public static final DepositFileType table
public static DepositFileType[] values()
for (DepositFileType c : DepositFileType.values()) System.out.println(c);
public static DepositFileType 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 © 2019. All rights reserved.