public enum PointOfSaleFileType extends java.lang.Enum<PointOfSaleFileType>
| Enum Constant and Description |
|---|
Csv
File is in Comma Separated Values format
|
Json
File is in Javascript Object Notation format
|
Xml
File is in Extended Markup Language format
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static PointOfSaleFileType |
valueOf(int intValue) |
static PointOfSaleFileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PointOfSaleFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointOfSaleFileType Json
public static final PointOfSaleFileType Csv
public static final PointOfSaleFileType Xml
public static PointOfSaleFileType[] values()
for (PointOfSaleFileType c : PointOfSaleFileType.values()) System.out.println(c);
public static PointOfSaleFileType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static PointOfSaleFileType valueOf(int intValue)
public int getValue()