public enum WorksheetMismatch extends Enum<WorksheetMismatch>
| Enum Constant and Description |
|---|
MISSING_HEADER
When the first row is missing
|
| Modifier and Type | Method and Description |
|---|---|
static WorksheetMismatch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorksheetMismatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorksheetMismatch MISSING_HEADER
public static WorksheetMismatch[] values()
for (WorksheetMismatch c : WorksheetMismatch.values()) System.out.println(c);
public static WorksheetMismatch 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 © 2010–2017 Henix, henix.fr. All rights reserved.