public enum ColumnMismatch extends Enum<ColumnMismatch>
| Enum Constant and Description |
|---|
DUPLICATE |
MISSING_MANDATORY |
| Modifier and Type | Method and Description |
|---|---|
static ColumnMismatch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnMismatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnMismatch MISSING_MANDATORY
public static final ColumnMismatch DUPLICATE
public static ColumnMismatch[] values()
for (ColumnMismatch c : ColumnMismatch.values()) System.out.println(c);
public static ColumnMismatch 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.