public static enum CSVImporter.CSVImportError extends java.lang.Enum<CSVImporter.CSVImportError>
| Enum Constant and Description |
|---|
DuplicateDescName |
FileNotFound |
ParsingError |
ValueMissing |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDesc() |
java.lang.String |
getProblem() |
void |
setProblem(java.lang.String p) |
static CSVImporter.CSVImportError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CSVImporter.CSVImportError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVImporter.CSVImportError FileNotFound
public static final CSVImporter.CSVImportError ValueMissing
public static final CSVImporter.CSVImportError DuplicateDescName
public static final CSVImporter.CSVImportError ParsingError
public static CSVImporter.CSVImportError[] values()
for (CSVImporter.CSVImportError c : CSVImporter.CSVImportError.values()) System.out.println(c);
public static CSVImporter.CSVImportError 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 java.lang.String getProblem()
public void setProblem(java.lang.String p)
public java.lang.String getDesc()