@Translatable public enum EExchangeFileTypeName extends Enum<EExchangeFileTypeName> implements com.helger.commons.text.display.IHasDisplayText
| Enum Constant and Description |
|---|
CSV
CSV - comma separated values
|
JSON
JSON file
|
JSON_SIMPLE
JSON file without types
|
TXT
Pure text file
|
XLS
Old Excel
|
XLSX
New Excel
|
XML
XML structured text
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDisplayText(Locale aContentLocale) |
static EExchangeFileTypeName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EExchangeFileTypeName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EExchangeFileTypeName CSV
public static final EExchangeFileTypeName XLS
public static final EExchangeFileTypeName XLSX
public static final EExchangeFileTypeName XML
public static final EExchangeFileTypeName TXT
public static final EExchangeFileTypeName JSON
public static final EExchangeFileTypeName JSON_SIMPLE
public static EExchangeFileTypeName[] values()
for (EExchangeFileTypeName c : EExchangeFileTypeName.values()) System.out.println(c);
public static EExchangeFileTypeName 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–2021 Philip Helger. All rights reserved.