public enum TransferFormat extends Enum<TransferFormat>
TransferFormats interface.
| Modifier and Type | Method and Description |
|---|---|
static TransferFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransferFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferFormat Csv
public static final TransferFormat Txt
public static final TransferFormat Html
public static final TransferFormat Xls
public static final TransferFormat Xlsx
public static final TransferFormat Pdf
public static final TransferFormat Dbf
public static TransferFormat[] values()
for (TransferFormat c : TransferFormat.values()) System.out.println(c);
public static TransferFormat 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 © 2005–2018 The Beangle Software. All rights reserved.